71114 手机端-待办任务统计PreHomo数量,按照PC端数量统计。

This commit is contained in:
wangzhijiang
2023-06-21 10:00:33 +08:00
parent d26f247bb6
commit bb714f84bc
@@ -71,9 +71,10 @@ public class TaskStatisticsServiceImpl implements ITaskStatisticsService {
List<ProcessInfoEO> preHomoList = piEoList.stream().filter(piEo -> {
return StringUtils.equals(piEo.getFlowType(), FlowTypeEnum.CERTIFICATION_LC.getValue());
}).collect(Collectors.toList());
if (CollectionUtils.isNotEmpty(preHomoList)) {
preHomoCount = this.getPreHomoCount(pidEoList, preHomoList);
}
preHomoCount = preHomoList.size();
// if (CollectionUtils.isNotEmpty(preHomoList)) {
// preHomoCount = this.getPreHomoCount(pidEoList, preHomoList);
// }
List<ProcessInfoEO> technologyEvaluationList = piEoList.stream().filter(piEo -> {
return StringUtils.equals(piEo.getFlowType(), FlowTypeEnum.FGJSPG.getValue());