From 4e8aa2d54a32d29f77daa0c6acba7e03c5261285 Mon Sep 17 00:00:00 2001 From: yjz <3131811435@qq.com> Date: Wed, 31 Jul 2024 18:27:08 +0800 Subject: [PATCH] =?UTF-8?q?fix(87424):=20=E6=A0=87=E5=87=86=E8=A7=A3?= =?UTF-8?q?=E8=AF=BB=E6=B5=81=E7=A8=8B=EF=BC=88=E6=A0=87=E5=87=86=E4=B8=BB?= =?UTF-8?q?=E8=A7=A3=E8=AF=BB=E4=BA=BA=E5=88=86=E5=8F=91=EF=BC=89=20--?= =?UTF-8?q?=E9=A9=B3=E5=9B=9E=E5=90=8E=E6=9B=B4=E6=8D=A2=E6=A0=87=E5=87=86?= =?UTF-8?q?=EF=BC=8C=E6=B5=81=E7=A8=8B=E5=90=8D=E7=A7=B0=E4=B8=8E=E6=A0=87?= =?UTF-8?q?=E5=87=86=E4=B8=8D=E4=B8=80=E8=87=B4=E4=BA=86?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../service/impl/StandardInterpretFlowServiceImpl.java | 9 +++++++++ 1 file changed, 9 insertions(+) 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())