From 09630808f3eed3caf6e9e328daaa6d4804be8bf9 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 25 Feb 2025 11:45:57 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E5=AE=9A=E6=97=B6?= =?UTF-8?q?=E4=BB=BB=E5=8A=A1=E6=89=A7=E8=A1=8C=E6=8A=A5=E9=94=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1229100465750016]定时任务执行报错 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1229100465750016 --- .../notify/content/ProcessingTaskOfMineHandler.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/module/process/notify/content/ProcessingTaskOfMineHandler.java b/src/main/java/neatlogic/module/process/notify/content/ProcessingTaskOfMineHandler.java index dfd5526ae..7c2646ef9 100644 --- a/src/main/java/neatlogic/module/process/notify/content/ProcessingTaskOfMineHandler.java +++ b/src/main/java/neatlogic/module/process/notify/content/ProcessingTaskOfMineHandler.java @@ -143,6 +143,8 @@ public class ProcessingTaskOfMineHandler extends NotifyContentHandlerBase { this.put("name","toList"); this.put("type", FormHandlerType.SELECT.toString()); this.put("placeholder","工单内容对应的处理人"); + this.put("value","工单内容对应的处理人"); + this.put("dataList", Collections.singletonList(new ValueTextVo("工单内容对应的处理人", "工单内容对应的处理人"))); this.put("disabled",true); } }); @@ -175,6 +177,8 @@ public class ProcessingTaskOfMineHandler extends NotifyContentHandlerBase { this.put("name","toList"); this.put("type", FormHandlerType.SELECT.toString()); this.put("placeholder","工单内容对应的处理人"); + this.put("value","工单内容对应的处理人"); + this.put("dataList", Collections.singletonList(new ValueTextVo("工单内容对应的处理人", "工单内容对应的处理人"))); this.put("disabled",true); } }); @@ -201,16 +205,18 @@ public class ProcessingTaskOfMineHandler extends NotifyContentHandlerBase { for(int i = 0;i < 12;i++){ Map map = new HashMap<>(); map.put("标题","机房进出申请-202101080000" + i); + map.put("工单id",(1363740810797056L + i) + ""); map.put("工单号","202101080000" + i); map.put("上报人","admin"); map.put("优先级","P3"); map.put("代报人","admin"); - map.put("当前步骤处理人","张三"); + map.put("当前步骤处理对象","张三"); map.put("当前步骤名","机房监督"); map.put("工单状态","处理中"); map.put("服务目录","机房"); map.put("服务类型","事件"); map.put("服务","机房进出申请"); + map.put("地域","广东省/深圳市"); map.put("上报时间","2021-01-08 10:10:57"); map.put("时间窗口","工作日"); map.put("结束时间","2021-01-12 15:18:23"); -- Gitee