|
|
@ -243,7 +243,7 @@ public class StatsResiWarnServiceImpl implements StatsResiWarnService { |
|
|
|
} |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<IcStatsResiResultDTO> list(String customerId,String id, String level) { |
|
|
|
public List<IcStatsResiResultDTO> list(String customerId,String id, String level,List<String> idList) { |
|
|
|
//获取所有配置类项 getshow
|
|
|
|
IcResiCategoryStatsConfigFormDTO dto = new IcResiCategoryStatsConfigFormDTO(); |
|
|
|
dto.setStatus("show"); |
|
|
@ -263,7 +263,7 @@ public class StatsResiWarnServiceImpl implements StatsResiWarnService { |
|
|
|
}); |
|
|
|
Map<String,Map<String, BigDecimal>> tableColumnCountMap = new HashMap<>(); |
|
|
|
paramMap.forEach((tableName,columnList) ->{ |
|
|
|
Map<String, BigDecimal> countMap = icResiUserDao.getDataAnalyseCount(customerId,tableName,columnList, id,level); |
|
|
|
Map<String, BigDecimal> countMap = icResiUserDao.getDataAnalyseCount(customerId,tableName,columnList, id,level,idList); |
|
|
|
if (countMap != null){ |
|
|
|
tableColumnCountMap.put(tableName,countMap); |
|
|
|
} |
|
|
@ -287,7 +287,7 @@ public class StatsResiWarnServiceImpl implements StatsResiWarnService { |
|
|
|
|
|
|
|
@Override |
|
|
|
public List<IcStatsResiResultDTO> list2(StatsResiListFormDTO formDTO) { |
|
|
|
return list(formDTO.getCustomerId(), formDTO.getId(), formDTO.getLevel()); |
|
|
|
return list(formDTO.getCustomerId(), formDTO.getId(), formDTO.getLevel(),null); |
|
|
|
} |
|
|
|
|
|
|
|
/** |
|
|
|