Browse Source

feature 代码提交

xiahan 4 months ago
parent
commit
65595b3782

+ 0 - 5
zhsw-common/src/main/java/com/rongwei/zhsw/system/service/impl/BillGenerationServiceImpl.java

@@ -84,11 +84,6 @@ public class BillGenerationServiceImpl {
 
     public void generateBill(List<SwWaterUsageEntryDo> swWaterUsageEntryDoList) {
         log.debug("需要生成账单的抄表记录为:{}", swWaterUsageEntryDoList);
-        SysUserVo currentUser = ZHSWCommonUtils.getCurrentUser();
-        List<SwEnterpriseConfigInfoDo> list = swEnterpriseConfigInfoService.list();
-        if(1==1){
-            throw new CustomException("");
-        }
         // 对数据按照抄表日期排序
         List<SwWaterUsageEntryDo> collect = swWaterUsageEntryDoList.stream()
                 .sorted(Comparator.comparing(SwWaterUsageEntryDo::getCurrentreadingdate))