修改认证清单bug

This commit is contained in:
高嵩
2023-06-26 16:59:28 +08:00
parent 4b7c490e48
commit a799b10f1b
@@ -5936,7 +5936,7 @@ public class ProjectCertificationInventoryEOServiceImpl extends ServiceImpl<Proj
public void syncProcessInfoDetailEndTime(Date newEndTime, List<ProjectCertificationInventoryEO> pciEoList) { public void syncProcessInfoDetailEndTime(Date newEndTime, List<ProjectCertificationInventoryEO> pciEoList) {
pciEoList = pciEoList.stream().filter(pciEo -> { pciEoList = pciEoList.stream().filter(pciEo -> {
boolean flag = false; boolean flag = false;
if(!newEndTime.equals(pciEo.getEndTime())){ if(null != newEndTime && !newEndTime.equals(pciEo.getEndTime())){
flag = true; flag = true;
} }
return flag; return flag;