diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java index 9df0f702..27b132a3 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/standardinterpret/service/impl/StandardInterpretFlowServiceImpl.java @@ -1398,6 +1398,7 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe // 标准解读流程_条款中间表_子表 List processStandardInterpretClauseSublistList = data.getProcessStandardInterpretClauseSublistList(); + LoginUser loginUser = (LoginUser) SecurityUtils.getSubject().getPrincipal(); // 当前任务节点 String node = StringUtils.isBlank(standardInterpretFlowDTO.getProcessApprovalRecord().getNodeId()) ? StandardInterpretCommon.REGULATORY_ENGINEER_START @@ -1545,6 +1546,10 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe // 删除旧数据 processStandardInterpretClauseService.removeByIds(processAllDelIds); + for (ProcessStandardInterpretClauseSublist standardInterpretClauseSublist : + processStandardInterpretClauseSublistList) { + standardInterpretClauseSublist.setInterpretPersonId(loginUser.getId()); + } processStandardInterpretClauseSublistService .saveOrUpdateBatch(processStandardInterpretClauseSublistList);