From d75ef31bfa763c5922f0f662feea04edfe990418 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Wed, 6 Dec 2023 16:21:26 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E8=8D=89=E7=A8=BF=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E4=B8=8D=E6=98=BE=E7=A4=BA=E6=B5=81=E7=A8=8B=E8=AF=B4=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../activiti/process/common/service/ActFlowCommonService.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/laws-modules/src/main/java/com/jero/modules/activiti/process/common/service/ActFlowCommonService.java b/laws-modules/src/main/java/com/jero/modules/activiti/process/common/service/ActFlowCommonService.java index 810df34b..31f4ef9f 100644 --- a/laws-modules/src/main/java/com/jero/modules/activiti/process/common/service/ActFlowCommonService.java +++ b/laws-modules/src/main/java/com/jero/modules/activiti/process/common/service/ActFlowCommonService.java @@ -383,7 +383,7 @@ public class ActFlowCommonService { draft.setHandleText(common.getCommitText()); // 流程审批信息-备注 draft.setHandleFile(common.getCommitFile()); // 流程审批信息-附件 draft.setProcessDueDate(common.getDueTime()); // 流程审批信息-附件 - draft.setProcessDescription(common.getProcessDescription()); // 流程审批信息-附件 + draft.setProcessDescription(common.getPrcMes()); // 流程审批信息-附件 draft.setUserId(CurrentUserUtil.getId()); // 用户id draft.setProjectId(newBusinessId); processDraftService.save(draft); @@ -396,7 +396,7 @@ public class ActFlowCommonService { commonVO.setCommitText(draft.getHandleText()); commonVO.setCommitFile(draft.getHandleFile()); commonVO.setDueTime(draft.getProcessDueDate()); - commonVO.setProcessDescription(draft.getProcessDescription()); + commonVO.setPrcMes(draft.getProcessDescription()); commonVO.setTaskId(taskId); commonVO.setProcessInstanceId(draft.getProcessInstanceId()); if (StrUtil.isNotBlank(taskId)) {