From a2f57f87f7bc74d2f5eea0d3ea623ad07f5bebc9 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Tue, 27 Aug 2024 10:56:23 +0800 Subject: [PATCH] =?UTF-8?q?[=E5=8A=9F=E8=83=BD]=20=E6=B5=81=E7=A8=8B?= =?UTF-8?q?=E7=AE=A1=E7=90=86-=E4=B8=8A=E6=8A=A5=E8=8A=82=E7=82=B9?= =?UTF-8?q?=E9=99=84=E4=BB=B6=E5=BC=80=E5=85=B3=E6=97=A0=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1232430214643712]流程管理-上报节点附件开关无效 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1232430214643712 --- .../neatlogic/framework/process/util/ProcessConfigUtil.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/neatlogic/framework/process/util/ProcessConfigUtil.java b/src/main/java/neatlogic/framework/process/util/ProcessConfigUtil.java index 0430dc46..4014869c 100644 --- a/src/main/java/neatlogic/framework/process/util/ProcessConfigUtil.java +++ b/src/main/java/neatlogic/framework/process/util/ProcessConfigUtil.java @@ -506,9 +506,9 @@ public class ProcessConfigUtil { autoStart = autoStart == null ? 1 : autoStart; resultObj.put("autoStart", autoStart); /** 启用上传附件 **/ -// Integer isNeedUploadFile = configObj.getInteger("isNeedUploadFile"); -// isNeedUploadFile = isNeedUploadFile == null ? 1 : isNeedUploadFile; -// resultObj.put("isNeedUploadFile", isNeedUploadFile); + Integer isNeedUploadFile = configObj.getInteger("isNeedUploadFile"); + isNeedUploadFile = isNeedUploadFile == null ? 1 : isNeedUploadFile; + resultObj.put("isNeedUploadFile", isNeedUploadFile); /** 启用描述 **/ Integer isNeedContent = configObj.getInteger("isNeedContent"); isNeedContent = isNeedContent == null ? 1 : isNeedContent; -- Gitee