From 50fa43424430c55351b190c583faa9fe59e1f1e4 Mon Sep 17 00:00:00 2001 From: caihaohan Date: Wed, 6 Dec 2023 16:16:43 +0800 Subject: [PATCH] =?UTF-8?q?feat:=20=E6=B5=81=E7=A8=8B=E4=BF=9D=E5=AD=98?= =?UTF-8?q?=E5=88=B0=E8=8D=89=E7=A8=BF=E4=BF=9D=E5=AD=98=E6=88=AA=E6=AD=A2?= =?UTF-8?q?=E6=97=A5=E6=9C=9F=E5=92=8C=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, 4 insertions(+) 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 42593122..810df34b 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 @@ -382,6 +382,8 @@ public class ActFlowCommonService { draft.setPrcType(processTypeEnum.getValue()); draft.setHandleText(common.getCommitText()); // 流程审批信息-备注 draft.setHandleFile(common.getCommitFile()); // 流程审批信息-附件 + draft.setProcessDueDate(common.getDueTime()); // 流程审批信息-附件 + draft.setProcessDescription(common.getProcessDescription()); // 流程审批信息-附件 draft.setUserId(CurrentUserUtil.getId()); // 用户id draft.setProjectId(newBusinessId); processDraftService.save(draft); @@ -393,6 +395,8 @@ public class ActFlowCommonService { commonVO.setPrcName(draft.getPrcName()); commonVO.setCommitText(draft.getHandleText()); commonVO.setCommitFile(draft.getHandleFile()); + commonVO.setDueTime(draft.getProcessDueDate()); + commonVO.setProcessDescription(draft.getProcessDescription()); commonVO.setTaskId(taskId); commonVO.setProcessInstanceId(draft.getProcessInstanceId()); if (StrUtil.isNotBlank(taskId)) {