From 94d8c59aa664e81259de1daf3e8f219566038252 Mon Sep 17 00:00:00 2001 From: "1437892690@qq.com" <1437892690@qq.com> Date: Mon, 17 Feb 2025 19:09:27 +0800 Subject: [PATCH] =?UTF-8?q?[=E4=BF=AE=E5=A4=8D]=20=E9=80=9A=E8=BF=87?= =?UTF-8?q?=E6=9C=8D=E5=8A=A1=E7=9B=AE=E5=BD=95=E5=88=9B=E5=BB=BA=E7=9A=84?= =?UTF-8?q?=E8=87=AA=E5=8A=A8=E5=8C=96=E4=BD=9C=E4=B8=9A=EF=BC=8C=E6=89=A7?= =?UTF-8?q?=E8=A1=8C=E7=9B=AE=E6=A0=87=E9=80=89=E6=8B=A9=E5=90=8E=E5=9C=A8?= =?UTF-8?q?=E7=94=9F=E6=88=90=E7=9A=84=E8=87=AA=E5=8A=A8=E5=8C=96=E4=BD=9C?= =?UTF-8?q?=E4=B8=9A=E4=B8=AD=E6=B2=A1=E6=9C=89=E7=94=9F=E6=95=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 关联 #[1358696355954688]通过服务目录创建的自动化作业,执行目标选择后在生成的自动化作业中没有生效 http://192.168.0.96:8090/demo/rdm.html#/bug-detail/939050947543040/939050947543057/1358696355954688 --- .../module/autoexec/service/AutoexecServiceServiceImpl.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java b/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java index 36f6ac2a..93d14c70 100644 --- a/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java +++ b/src/main/java/neatlogic/module/autoexec/service/AutoexecServiceServiceImpl.java @@ -17,6 +17,7 @@ package neatlogic.module.autoexec.service; import com.alibaba.fastjson.JSONArray; import com.alibaba.fastjson.JSONObject; +import neatlogic.framework.autoexec.constvalue.CombopNodeSpecify; import neatlogic.framework.autoexec.constvalue.ParamMappingMode; import neatlogic.framework.autoexec.constvalue.ServiceParamMappingMode; import neatlogic.framework.autoexec.dao.mapper.AutoexecCombopMapper; @@ -781,7 +782,7 @@ public class AutoexecServiceServiceImpl implements AutoexecServiceService { config.setRoundCount(null); } if (autoexecCombopVersionVo.getNeedExecuteNode()) { - if (executeConfig.getExecuteNodeConfig() != null) { + if (Objects.equals(executeConfig.getWhenToSpecify(), CombopNodeSpecify.NOW.getValue()) && executeConfig.getExecuteNodeConfig() != null) { ParamMappingVo executeNodeConfig = new ParamMappingVo(); executeNodeConfig.setMappingMode(ParamMappingMode.CONSTANT.getValue()); executeNodeConfig.setValue(executeConfig.getExecuteNodeConfig()); -- Gitee