From 03898d5c38b50911ad34a800958084b7a2bd7338 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 16 Jan 2025 18:41:25 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E7=BC=96=E8=BE=91=E9=80=9A=E7=9F=A5?= =?UTF-8?q?=E7=AD=96=E7=95=A5=E4=BF=9D=E5=AD=98=E5=90=8E=EF=BC=8C=E5=9B=9E?= =?UTF-8?q?=E6=98=BE=E5=BC=82=E5=B8=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1335362041905152]流程管理-编辑通知策略保存后,回显异常 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1335362041905152 --- .../stephandler/utilhandler/EventProcessUtilHandler.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/neatlogic/module/event/stephandler/utilhandler/EventProcessUtilHandler.java b/src/main/java/neatlogic/module/event/stephandler/utilhandler/EventProcessUtilHandler.java index 35a8d3f..b48e679 100644 --- a/src/main/java/neatlogic/module/event/stephandler/utilhandler/EventProcessUtilHandler.java +++ b/src/main/java/neatlogic/module/event/stephandler/utilhandler/EventProcessUtilHandler.java @@ -5,6 +5,7 @@ import neatlogic.framework.event.dto.EventSolutionVo; import neatlogic.framework.event.dto.EventTypeVo; import neatlogic.framework.event.dto.EventVo; import neatlogic.framework.event.exception.core.EventNotFoundException; +import neatlogic.framework.notify.core.INotifyPolicyHandler; import neatlogic.framework.process.constvalue.ProcessTaskOperationType; import neatlogic.framework.process.constvalue.ProcessTaskStepOperationType; import neatlogic.framework.process.dto.ProcessTaskStepVo; @@ -13,6 +14,7 @@ import neatlogic.framework.process.stephandler.core.ProcessStepInternalHandlerBa import neatlogic.module.event.dao.mapper.EventMapper; import neatlogic.module.event.dao.mapper.EventSolutionMapper; import neatlogic.module.event.dao.mapper.EventTypeMapper; +import neatlogic.module.event.notify.handler.EventNotifyPolicyHandler; import org.springframework.beans.factory.annotation.Autowired; import org.springframework.stereotype.Service; @@ -92,6 +94,11 @@ public class EventProcessUtilHandler extends ProcessStepInternalHandlerBase { }; } + @Override + public Class getNotifyPolicyHandlerClass() { + return EventNotifyPolicyHandler.class; + } + @Override public String[] getRegulateKeyList() { return new String[]{"authorityList", "notifyPolicyConfig", "actionConfig", "customButtonList", "customStatusList", "replaceableTextList", "workerPolicyConfig", "taskConfig", "enableReapproval", "formSceneUuid", "formSceneName", "autoStart", "isNeedUploadFile", "isNeedContent", "isRequired", "commentTemplateId", "tagList"}; -- Gitee