update 法规合规评估流程.bpmn

This commit is contained in:
lijiarao
2024-02-01 18:38:15 +08:00
parent 2b900b833f
commit 234bfbf02b
3 changed files with 284 additions and 299 deletions
@@ -489,7 +489,10 @@ public class ProcessProjectStandardService extends ServiceImpl<ProcessProjectSta
//查询表单
ProcessProjectStandardVO businessInfoDTO = processInfoVO.getBusinessInfoDTO();
List<ProcessProjectStandardTerm> termList = businessInfoDTO.getProcessProjectStandardTermList();
List<String> designEngineerList = termList.stream().map(ProcessProjectStandardTerm::getDesignEngineer).distinct().collect(Collectors.toList());
List<String> designEngineerList = termList.stream().map(ProcessProjectStandardTerm::getDesignEngineer)
.filter(Objects::nonNull)
.distinct()
.collect(Collectors.toList());
// 完成任务
ThreadLocalUtil.put(ProcessProjectAssessCommon.EXECUTION_ID,parentExecutionId);