车型库统计导出

This commit is contained in:
zhn
2023-10-17 15:01:20 +08:00
parent f0273d9d1c
commit 9c99ca455e
@@ -389,7 +389,6 @@ public class ProjectLibraryStatisticsServiceImpl implements IProjectLibraryStati
List<ProjectLawsInventoryEO> nonComplianceDesignPliEoList = datas.stream().filter(data -> {
boolean flag = (
StringUtils.equals(data.getDesignFlowStatus(),ComplianceFlowStatusEnum.INCONFORMITY.getValue())
|| StringUtils.equals(data.getDesignFlowStatus(),ComplianceFlowStatusEnum.TO_TRACK.getValue())
);
return flag;
}).collect(Collectors.toList());
@@ -402,8 +401,7 @@ public class ProjectLibraryStatisticsServiceImpl implements IProjectLibraryStati
// 待追踪
List<ProjectLawsInventoryEO> toBeTrackedPliEoList = datas.stream().filter(data -> {
boolean flag = (
StringUtils.equals(data.getDesignFlowStatus(),ComplianceFlowStatusEnum.INCONFORMITY.getValue())
|| StringUtils.equals(data.getDesignFlowStatus(),ComplianceFlowStatusEnum.TO_TRACK.getValue())
StringUtils.equals(data.getDesignFlowStatus(),ComplianceFlowStatusEnum.TO_TRACK.getValue())
);
return flag;
}).collect(Collectors.toList());