Subversion Repositories SmartDukaan

Rev

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

Rev 33737 Rev 33740
Line 1047... Line 1047...
1047
		cellIGSTAmountHeader.setCellValue("IGST_Amount");
1047
		cellIGSTAmountHeader.setCellValue("IGST_Amount");
1048
 
1048
 
1049
		Cell cellQuantityHeader = rowHeader.createCell(22);
1049
		Cell cellQuantityHeader = rowHeader.createCell(22);
1050
		cellQuantityHeader.setCellValue("Quantity");
1050
		cellQuantityHeader.setCellValue("Quantity");
1051
 
1051
 
-
 
1052
		Cell cellAmountWithGstHeader = rowHeader.createCell(23);
-
 
1053
		cellAmountWithGstHeader.setCellValue("Amount_With_GST");
-
 
1054
 
1052
		Cell cellAmountHeader = rowHeader.createCell(23);
1055
		Cell cellAmountHeader = rowHeader.createCell(24);
1053
		cellAmountHeader.setCellValue("Amount");
1056
		cellAmountHeader.setCellValue("Amount");
1054
 
1057
 
1055
		Cell cellWarehouseHeader = rowHeader.createCell(24);
1058
		Cell cellWarehouseHeader = rowHeader.createCell(25);
1056
		cellWarehouseHeader.setCellValue("Warehouse_Address");
1059
		cellWarehouseHeader.setCellValue("Warehouse_Address");
1057
 
1060
 
1058
		Font font = workbook.createFont();
1061
		Font font = workbook.createFont();
1059
		CellStyle cellStyle = workbook.createCellStyle();
1062
		CellStyle cellStyle = workbook.createCellStyle();
1060
		font.setBold(true);
1063
		font.setBold(true);
Line 1138... Line 1141...
1138
			cellIGSTAmount.setCellValue(purchaseInvoiceModel.getIgstAmount());
1141
			cellIGSTAmount.setCellValue(purchaseInvoiceModel.getIgstAmount());
1139
 
1142
 
1140
			Cell cellQuantity = rowValues.createCell(22);
1143
			Cell cellQuantity = rowValues.createCell(22);
1141
			cellQuantity.setCellValue(purchaseInvoiceModel.getQuantity());
1144
			cellQuantity.setCellValue(purchaseInvoiceModel.getQuantity());
1142
 
1145
 
-
 
1146
			Cell cellAmountWithGst = rowValues.createCell(23);
-
 
1147
			cellAmountWithGst.setCellValue(purchaseInvoiceModel.getAmountWithGst());
-
 
1148
 
1143
			Cell cellAmount = rowValues.createCell(23);
1149
			Cell cellAmount = rowValues.createCell(24);
1144
			cellAmount.setCellValue(purchaseInvoiceModel.getAmount());
1150
			cellAmount.setCellValue(purchaseInvoiceModel.getAmount());
1145
 
1151
 
1146
			Cell cellWarehouseAddress = rowValues.createCell(24);
1152
			Cell cellWarehouseAddress = rowValues.createCell(25);
1147
			cellWarehouseAddress.setCellValue(purchaseInvoiceModel.getWarehouseAddress());
1153
			cellWarehouseAddress.setCellValue(purchaseInvoiceModel.getWarehouseAddress());
1148
		}
1154
		}
1149
 
1155
 
1150
		for (int index = 0; index < 14; index++) {
1156
		for (int index = 0; index < 14; index++) {
1151
			sheet.autoSizeColumn(index);
1157
			sheet.autoSizeColumn(index);