lin 4 anos atrás
pai
commit
c22d1daf75

+ 0 - 10
smart-city-platform/src/main/java/com/bz/smart_city/controller/water/WaterReadController.java

@@ -140,16 +140,6 @@ public class WaterReadController {
         return new AjaxMessage<>(ResultStatus.OK, statMeterReadRateByBuildingService.getListByCustomer(period, channelId, customerId, null, null));
     }
 
-    @ResponseBody
-    @GetMapping("getSubListByCustomer")
-    @ApiOperation(value = "根据客户获取子类抄表率列表数据")
-    public AjaxMessage<List<CustomerRateDto>> getSubListByCustomer(
-            @ApiParam(value = "查询范围,2:昨天,7:近7日,15:近15日,99:上月", required = false) @RequestParam(required = false) Integer period,
-            @ApiParam(value = "场景id", required = false) @RequestParam(required = false) Integer channelId,
-            @ApiParam(value = "客户id", required = false) @RequestParam(required = false) Integer customerId
-    ) {
-        return new AjaxMessage<>(ResultStatus.OK, statMeterReadRateByBuildingService.getSubListByCustomer(period, channelId, customerId));
-    }
 
     @GetMapping("getExcelByCustomer")
     @ApiOperation(value = "根据客户获取抄表率Excel")

+ 0 - 2
smart-city-platform/src/main/java/com/bz/smart_city/service/StatMeterReadRateByBuildingService.java

@@ -27,8 +27,6 @@ public interface StatMeterReadRateByBuildingService{
 
     List<CustomerRateDto> getListByCustomer(Integer period, Integer channelId, Integer customerId, String sortColumn, String sortOrder);
 
-    List<CustomerRateDto> getSubListByCustomer(Integer period, Integer channelId, Integer customerId);
-
     void getRateExcelByCustomer(Integer period, Integer channelId, Integer customerId, HttpServletResponse httpServletResponse);
 
     WaterReadRateCountDto getCountByCustomer(Integer period, Integer channelId, Integer customerId);

+ 4 - 38
smart-city-platform/src/main/java/com/bz/smart_city/service/impl/StatMeterReadRateByBuildingServiceImpl.java

@@ -337,8 +337,8 @@ public class StatMeterReadRateByBuildingServiceImpl implements StatMeterReadRate
         List<Integer> customerIds = customerId != null?customerService.findAllIds(customerId):null;
 
         DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
-        //Integer startDate = Integer.valueOf(LocalDate.now().plusDays(-1).format(formatter));
-        Integer startDate = 20200317;
+        Integer startDate = Integer.valueOf(LocalDate.now().plusDays(-1).format(formatter));
+        //Integer startDate = 20200317;
 
 
         List<CustomerRateDto> customerRateDtoList = newArrayList();
@@ -396,40 +396,6 @@ public class StatMeterReadRateByBuildingServiceImpl implements StatMeterReadRate
         return newList;
     }
 
-    @Override
-    public List<CustomerRateDto> getSubListByCustomer(Integer period, Integer channelId, Integer customerId) {
-        LoginUser loginUser = UserUtil.getCurrentUser();
-        ///查询数据权限的建筑ids
-        List<Integer> buildingIds = buildingService.getIdsByDataPermission();
-        //2、根据数据项查询客户
-        //List<Customer> customerList = customerService.getCustomerListByItem(loginUser.getSiteId(), buildingIds, customerId);
-        List<Integer> subIds = customerService.findSubIds(customerId);
-
-
-        DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
-        //Integer startDate = Integer.valueOf(LocalDate.now().plusDays(-1).format(formatter));
-        Integer startDate = 20200317;
-
-
-        List<CustomerRateDto> customerRateDtoList = newArrayList();
-        if (period == 2) { // 昨天,查询天表
-            customerRateDtoList = statMeterReadRateByBuildingMapper.getRateListByCustomerV2("sc_stat_meter_read_rate_by_building",loginUser.getSiteId(), startDate, buildingIds,channelId,subIds);
-        } else if (period == 7) { // 近7天,查询7天表
-            customerRateDtoList = statMeterReadRateByBuildingMapper.getRateListByCustomerV2("sc_stat_meter_read_rate_by_building_7day",loginUser.getSiteId(), startDate, buildingIds,channelId,subIds);
-        } else if (period == 15) {// 近15天,查询15天表
-            customerRateDtoList = statMeterReadRateByBuildingMapper.getRateListByCustomerV2("sc_stat_meter_read_rate_by_building_15day",loginUser.getSiteId(), startDate, buildingIds,channelId,subIds);
-        }else if (period == 99) {// 上个月,查询15天表
-            DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyyMM");
-            startDate = Integer.parseInt(LocalDateTime.now().plusMonths(-1).format(df));
-            customerRateDtoList = statMeterReadRateByBuildingMapper.getRateListByCustomerV2("sc_stat_meter_read_rate_by_building_month",loginUser.getSiteId(), startDate, buildingIds,channelId,subIds);
-        }
-        if (customerRateDtoList != null && customerRateDtoList.size()>0) {
-            for (CustomerRateDto customerRateDto : customerRateDtoList) {
-                customerRateDto.setList(statMeterReadRateByBuildingMapper.getRateListByCustomerV2AndDeviceType("sc_stat_meter_read_rate_by_building_month",loginUser.getSiteId(), startDate, buildingIds,channelId,customerRateDto.getCustomerId()));
-            }
-        }
-        return customerRateDtoList;
-    }
 
     @Override
     public void getRateExcelByCustomer(Integer period, Integer channelId, Integer customerId, HttpServletResponse httpServletResponse) {
@@ -473,8 +439,8 @@ public class StatMeterReadRateByBuildingServiceImpl implements StatMeterReadRate
         }
 
         DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
-        //Integer startDate = Integer.valueOf(LocalDate.now().plusDays(-1).format(formatter));
-        Integer startDate = 20200317;
+        Integer startDate = Integer.valueOf(LocalDate.now().plusDays(-1).format(formatter));
+        //Integer startDate = 20200317;
 
 
         if (period == 2) {