java110
2023-04-06 6f5470311956736f28af4a60360604e22efcc356
optimize
1个文件已修改
4 ■■■■ 已修改文件
springboot/src/main/java/com/java110/boot/smo/assetExport/impl/ExportFeeManualCollectionSMOImpl.java 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
springboot/src/main/java/com/java110/boot/smo/assetExport/impl/ExportFeeManualCollectionSMOImpl.java
@@ -379,7 +379,7 @@
            }
            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");
@@ -388,7 +388,7 @@
            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);