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)) {