Commit 98e2cc26 authored by 刘林's avatar 刘林

fix(statistics):不需要统计资质超期和许可超期数据,2024-11-12日需求修改

parent df7c4fc4
......@@ -427,7 +427,10 @@ public class AQZSDPStatisticsServiceImpl {
Map<String, Object> dataMap = new HashMap<>();
List<Object> xdata = new ArrayList<>();
List<Object> ydata = new ArrayList<>();
List<String> enumNameList = IssueTypeEnum.getEnumNameListByMainBody("3");
// 不需要统计资质超期和许可超期数据,2024-11-12日需求修改
List<String> enumNameList = IssueTypeEnum.getEnumNameListByMainBody("3").stream()
.filter(item -> !(item.contains("资质超期") || item.contains("许可超期")))
.collect(Collectors.toList());
String orgCode = stCommonService.getAndSetOrgCode(dpFilterParamDto.getCityCode());
if (orgCode != null) {
List<CountDto> countDtos = statisticsMapper.selectByOrgAndProblemType(orgCode, enumNameList, dpFilterParamDto, IssueMainBodyEnum.EQUIPMENT.getCode(), null);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment