71114 手机端-待办任务统计PreHomo数量,按照PC端数量统计。
This commit is contained in:
+4
-3
@@ -71,9 +71,10 @@ public class TaskStatisticsServiceImpl implements ITaskStatisticsService {
|
|||||||
List<ProcessInfoEO> preHomoList = piEoList.stream().filter(piEo -> {
|
List<ProcessInfoEO> preHomoList = piEoList.stream().filter(piEo -> {
|
||||||
return StringUtils.equals(piEo.getFlowType(), FlowTypeEnum.CERTIFICATION_LC.getValue());
|
return StringUtils.equals(piEo.getFlowType(), FlowTypeEnum.CERTIFICATION_LC.getValue());
|
||||||
}).collect(Collectors.toList());
|
}).collect(Collectors.toList());
|
||||||
if (CollectionUtils.isNotEmpty(preHomoList)) {
|
preHomoCount = preHomoList.size();
|
||||||
preHomoCount = this.getPreHomoCount(pidEoList, preHomoList);
|
// if (CollectionUtils.isNotEmpty(preHomoList)) {
|
||||||
}
|
// preHomoCount = this.getPreHomoCount(pidEoList, preHomoList);
|
||||||
|
// }
|
||||||
|
|
||||||
List<ProcessInfoEO> technologyEvaluationList = piEoList.stream().filter(piEo -> {
|
List<ProcessInfoEO> technologyEvaluationList = piEoList.stream().filter(piEo -> {
|
||||||
return StringUtils.equals(piEo.getFlowType(), FlowTypeEnum.FGJSPG.getValue());
|
return StringUtils.equals(piEo.getFlowType(), FlowTypeEnum.FGJSPG.getValue());
|
||||||
|
|||||||
Reference in New Issue
Block a user