update 法规合规评估流程.bpmn
This commit is contained in:
+4
-1
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user