From 57256f25961e49815aae70158ab2180ec9c4ac49 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 25 Feb 2025 15:12:12 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E5=B7=A5=E5=8D=95?= =?UTF-8?q?=E8=AF=A6=E6=83=85=E9=A1=B5=E6=AD=A5=E9=AA=A4=E5=88=97=E8=A1=A8?= =?UTF-8?q?=E4=B8=AD=E5=8A=A8=E4=BD=9C=E6=98=BE=E7=A4=BA=E7=BC=BA=E5=B0=91?= =?UTF-8?q?=E8=A7=A6=E5=8F=91=E7=82=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1364484495474688]工单详情页步骤列表中动作显示缺少触发点 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1364484495474688 --- .../module/process/service/ProcessTaskServiceImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/neatlogic/module/process/service/ProcessTaskServiceImpl.java b/src/main/java/neatlogic/module/process/service/ProcessTaskServiceImpl.java index 96811dfab..b0fb82be3 100644 --- a/src/main/java/neatlogic/module/process/service/ProcessTaskServiceImpl.java +++ b/src/main/java/neatlogic/module/process/service/ProcessTaskServiceImpl.java @@ -48,6 +48,7 @@ import neatlogic.framework.fulltextindex.core.IFullTextIndexHandler; import neatlogic.framework.integration.dao.mapper.IntegrationMapper; import neatlogic.framework.integration.dto.IntegrationVo; import neatlogic.framework.notify.core.INotifyTriggerType; +import neatlogic.framework.notify.core.NotifyTriggerTypeFactory; import neatlogic.framework.notify.dto.NotifyReceiverVo; import neatlogic.framework.process.column.core.IProcessTaskColumn; import neatlogic.framework.process.column.core.ProcessTaskColumnFactory; @@ -63,7 +64,6 @@ import neatlogic.framework.process.exception.process.ProcessStepUtilHandlerNotFo import neatlogic.framework.process.exception.processtask.*; import neatlogic.framework.process.exception.processtask.task.ProcessTaskStepTaskNotCompleteException; import neatlogic.framework.process.fulltextindex.ProcessFullTextIndexType; -import neatlogic.framework.process.notify.constvalue.ProcessTaskStepNotifyTriggerType; import neatlogic.framework.process.operationauth.core.IOperationType; import neatlogic.framework.process.operationauth.core.ProcessAuthManager; import neatlogic.framework.process.stephandler.core.*; @@ -2390,7 +2390,7 @@ public class ProcessTaskServiceImpl implements ProcessTaskService, IProcessTaskC } else { processTaskActionVo.setStatusText("已失败"); } - String triggerText = ProcessTaskStepNotifyTriggerType.getText(processTaskActionVo.getTrigger()); + String triggerText = NotifyTriggerTypeFactory.getText(processTaskActionVo.getTrigger()); if(StringUtils.isNotBlank(triggerText)) { processTaskActionVo.setTriggerText(triggerText); } -- Gitee