瀏覽代碼

优化自定义费用创建

Your Name 3 年之前
父節點
當前提交
e026100e80

+ 9 - 5
springboot/src/main/java/com/java110/boot/smo/assetExport/impl/ExportRoomSMOImpl.java

@@ -173,8 +173,9 @@ public class ExportRoomSMOImpl extends DefaultAbstractComponentSMO implements IE
         Row row = sheet.createRow(0);
         Cell cell0 = row.createCell(0);
         cell0.setCellValue("费用名称: 请填写系统中费用类型,如物业费,押金等 ;\n计费起始时间: " +
-                "计费起始时间时间,格式为YYYY-MM-DD;\n建账时间: 建账时间,格式为YYYY-MM-DD; \n 类型:表明是合同 房屋 还是车辆 房屋 1001 车辆 2002 合同 3003" +
-                "\n注意:所有单元格式为文本");
+                "计费起始时间,格式为YYYY-MM-DD;\n计费结束时间,格式为YYYY-MM-DD;\n" +
+                "建账时间: 建账时间,格式为YYYY-MM-DD; \n 类型:表明是合同 房屋 还是车辆 房屋 1001 车辆 2002 合同 3003" +
+                "\n注意:所有单元格式为文本,计费结束时间只有一次性费用和间接性费用时需要填写");
         CellStyle cs = workbook.createCellStyle();
         cs.setWrapText(true);  //关键
         cell0.setCellStyle(cs);
@@ -186,6 +187,7 @@ public class ExportRoomSMOImpl extends DefaultAbstractComponentSMO implements IE
         row.createCell(3).setCellValue("收费项目");
         row.createCell(4).setCellValue("建账时间");
         row.createCell(5).setCellValue("计费起始时间");
+        row.createCell(6).setCellValue("计费结束时间");
 
         ParkingSpaceDto parkingSpaceDto = new ParkingSpaceDto();
         parkingSpaceDto.setCommunityId(paramIn.getString("communityId"));
@@ -258,8 +260,9 @@ public class ExportRoomSMOImpl extends DefaultAbstractComponentSMO implements IE
         Row row = sheet.createRow(0);
         Cell cell0 = row.createCell(0);
         cell0.setCellValue("费用名称: 请填写系统中费用类型,如物业费,押金等 ;\n计费起始时间: " +
-                "计费起始时间时间,格式为YYYY-MM-DD;\n建账时间: 建账时间,格式为YYYY-MM-DD; \n 类型:表明是合同 房屋 还是车辆 房屋 1001 车辆 2002 合同 3003" +
-                "\n注意:所有单元格式为文本");
+                "计费起始时间,格式为YYYY-MM-DD;\n计费结束时间,格式为YYYY-MM-DD;\n" +
+                "建账时间: 建账时间,格式为YYYY-MM-DD; \n 类型:表明是合同 房屋 还是车辆 房屋 1001 车辆 2002 合同 3003" +
+                "\n注意:所有单元格式为文本,计费结束时间只有一次性费用和间接性费用时需要填写");
         CellStyle cs = workbook.createCellStyle();
         cs.setWrapText(true);  //关键
         cell0.setCellStyle(cs);
@@ -271,7 +274,8 @@ public class ExportRoomSMOImpl extends DefaultAbstractComponentSMO implements IE
         row.createCell(3).setCellValue("收费项目");
         row.createCell(4).setCellValue("建账时间");
         row.createCell(5).setCellValue("计费起始时间");
-        row.createCell(6).setCellValue("房屋状态");
+        row.createCell(6).setCellValue("计费结束时间");
+        row.createCell(7).setCellValue("房屋状态");
 
 
         RoomDto roomDto = new RoomDto();