| | |
| | | } |
| | | cell3.setCellStyle(cellStyle); |
| | | cell4 = row.createCell(4); |
| | | cell4.setCellValue(feeObj.getString("feePrice")); |
| | | cell4.setCellValue(feeObj.getString("feeTotalPrice")); |
| | | cell4.setCellStyle(cellStyle); |
| | | cell5 = row.createCell(5); |
| | | cell5.setCellValue("0"); |
| | |
| | | cell6.setCellValue(""); |
| | | cell6.setCellStyle(cellStyle); |
| | | row.setHeight((short) (defaultRowHeight)); |
| | | totalPrice = totalPrice.add(new BigDecimal(feeObj.getString("feePrice"))); |
| | | totalPrice = totalPrice.add(new BigDecimal(feeObj.getString("feeTotalPrice"))); |
| | | } |
| | | |
| | | row = sheet.createRow(line + fees.size() + 3); |