From ba550f814543eeddd2b9aeff2b49b24e5678410e Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Thu, 16 Jan 2025 18:38:51 +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 --- .../utilhandler/ChangeCreateProcessUtilHandler.java | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java b/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java index df23bd4..1729090 100644 --- a/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java +++ b/src/main/java/neatlogic/module/change/stephandler/utilhandler/ChangeCreateProcessUtilHandler.java @@ -8,12 +8,14 @@ import neatlogic.framework.change.dto.ChangeStatusVo; import neatlogic.framework.change.dto.ChangeStepVo; import neatlogic.framework.change.dto.ChangeVo; import neatlogic.framework.common.dto.ValueTextVo; +import neatlogic.framework.notify.core.INotifyPolicyHandler; import neatlogic.framework.process.constvalue.ProcessTaskOperationType; import neatlogic.framework.process.constvalue.ProcessTaskStepOperationType; import neatlogic.framework.process.dto.ProcessTaskStepVo; import neatlogic.framework.process.operationauth.core.IOperationType; import neatlogic.framework.process.stephandler.core.ProcessStepInternalHandlerBase; import neatlogic.module.change.dao.mapper.ChangeMapper; +import neatlogic.module.change.notify.handler.ChangeCreateNotifyPolicyHandler; import neatlogic.module.change.service.ChangeService; import org.apache.commons.lang3.StringUtils; import org.springframework.beans.factory.annotation.Autowired; @@ -111,6 +113,11 @@ public class ChangeCreateProcessUtilHandler extends ProcessStepInternalHandlerBa }; } + @Override + public Class getNotifyPolicyHandlerClass() { + return ChangeCreateNotifyPolicyHandler.class; + } + @Override public String[] getRegulateKeyList() { return new String[]{"authorityList", "notifyPolicyConfig", "actionConfig", "customButtonList", "customStatusList", "replaceableTextList", "workerPolicyConfig", "formSceneUuid", "formSceneName", "autoStart", "isNeedUploadFile", "isNeedContent", "isRequired", "commentTemplateId", "tagList"}; -- Gitee