From 12f73bafbe361f78d68a35de83ca3b3b4d4e0224 Mon Sep 17 00:00:00 2001 From: xiangpei <xiangpei@timesnew.cn> Date: 星期五, 14 二月 2025 16:27:43 +0800 Subject: [PATCH] 查询待办任务时,判断是否挂起状态 --- business/src/main/java/com/ycl/service/impl/FlowTaskServiceImpl.java | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/business/src/main/java/com/ycl/service/impl/FlowTaskServiceImpl.java b/business/src/main/java/com/ycl/service/impl/FlowTaskServiceImpl.java index ca2edcc..268b945 100644 --- a/business/src/main/java/com/ycl/service/impl/FlowTaskServiceImpl.java +++ b/business/src/main/java/com/ycl/service/impl/FlowTaskServiceImpl.java @@ -178,6 +178,7 @@ projectProcess.getProjectId(), projectProcess.getProcessInsId(), taskId, + task.getName(), ProcessLogEventTypeEnum.FINISHED, null)); return AjaxResult.success("鎻愪氦鎴愬姛"); @@ -318,6 +319,7 @@ projectProcess.getProjectId(), projectProcess.getProcessInsId(), flowTaskVo.getTaskId(), + task.getName(), ProcessLogEventTypeEnum.REJECT, new RejectData(flowTaskVo.getComment()))); } -- Gitblit v1.8.0