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 845a81ad..9df0f702 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 @@ -1406,6 +1406,15 @@ public class StandardInterpretFlowServiceImpl implements StandardInterpretFlowSe switch (node){ // 法规工程师发起 case StandardInterpretCommon.REGULATORY_ENGINEER_START: + // 生成流程名称 + String standardId = data.getProcessStandardInterpret().getStandardId(); + LawsDomesticStandard lawsDomesticStandard = lawsDomesticStandardService.getById(standardId); + String prcName = lawsDomesticStandard.getStandardNumber() + "-" + + lawsDomesticStandard.getStandardName() + "-解读"; + processAllService.update(new LambdaUpdateWrapper() + .eq(ProcessAll::getId, standardInterpretFlowDTO.getProcessAll().getId()) + .set(ProcessAll::getPrcName, prcName)); + SarFileSplitInfoEO sarFileSplitInfoEO = sarFileSplitInfoService.getOne(new LambdaQueryWrapper() .eq(SarFileSplitInfoEO::getStandardId, processStandardInterpret.getStandardId())