Subversion Repositories SmartDukaan

Rev

Rev 4601 | Rev 4715 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 4601 Rev 4616
Line 701... Line 701...
701
			    contentRow.createCell(OrderReportColumn.SERVICE_TAX.getValue()).setCellValue(serviceTax);
701
			    contentRow.createCell(OrderReportColumn.SERVICE_TAX.getValue()).setCellValue(serviceTax);
702
			    contentRow.createCell(OrderReportColumn.OTHER_CHARGES.getValue()).setCellValue(otherCollectionCharges);
702
			    contentRow.createCell(OrderReportColumn.OTHER_CHARGES.getValue()).setCellValue(otherCollectionCharges);
703
			    contentRow.createCell(OrderReportColumn.NET_COLLECTION.getValue()).setCellValue(netCollection);
703
			    contentRow.createCell(OrderReportColumn.NET_COLLECTION.getValue()).setCellValue(netCollection);
704
		    }
704
		    }
705
		} catch (TTransportException e) {
705
		} catch (TTransportException e) {
706
			e.printStackTrace();
706
			logger.error("Transport exception", e);
707
		} catch (PaymentException e) {
707
		} catch (PaymentException e) {
708
			e.printStackTrace();
708
			logger.error("Payment Service exception", e);
709
		} catch (TException e) {
709
		} catch (TException e) {
710
			e.printStackTrace();
710
			logger.error("Thrift exception", e);
711
		} catch (TransactionServiceException e) {
711
		} catch (TransactionServiceException e) {
712
			e.printStackTrace();
712
			logger.error("Transaction Service exception", e);
713
		}
713
		}
714
	}
714
	}
715
	
715
	
716
	public List<Vendor> getAllVendors()	{
716
	public List<Vendor> getAllVendors()	{
717
		return this.vendors;
717
		return this.vendors;