|
|
|
|
@ -2,6 +2,7 @@ package com.biutag.supervision.service.report;
|
|
|
|
|
|
|
|
|
|
import cn.hutool.core.util.StrUtil; |
|
|
|
|
import com.biutag.supervision.constants.enums.CheckStatusEnum; |
|
|
|
|
import com.biutag.supervision.constants.enums.ProcessingStatusEnum; |
|
|
|
|
import com.biutag.supervision.pojo.domain.NegativeVo; |
|
|
|
|
import com.biutag.supervision.pojo.dto.report.BusinessLineOverviewSection; |
|
|
|
|
import com.biutag.supervision.pojo.dto.report.OverviewSection; |
|
|
|
|
@ -125,7 +126,7 @@ public class ReportDataServiceImpl implements ReportDataService {
|
|
|
|
|
// 分县市局下发数据
|
|
|
|
|
List<NegativeQueryVo> fxsjxfNegativeList = ztNegativeList.stream().filter(one -> Objects.equals(2, one.getCrtDepartLevel())).toList(); |
|
|
|
|
// 办结数据
|
|
|
|
|
List<NegativeQueryVo> bjNegativeList = ztNegativeList.stream().filter(one -> !Objects.isNull(one.getCompleteDate())).toList(); |
|
|
|
|
List<NegativeQueryVo> bjNegativeList = ztNegativeList.stream().filter(one -> ProcessingStatusEnum.completed.getLabel().equals(one.getProcessingStatus())).toList(); |
|
|
|
|
// 办结中属实数据
|
|
|
|
|
List<NegativeQueryVo> bjssNegativeList = bjNegativeList.stream().filter(one -> CheckStatusEnum.TRUE_SET.contains(one.getCheckStatus())).toList(); |
|
|
|
|
// 办结中基本属实数据
|
|
|
|
|
|