From 55bb867dca320de34516ebb7e8266ea607d3243e Mon Sep 17 00:00:00 2001 From: Rui_Li <877258667@qq.com> Date: Fri, 24 Jan 2025 09:52:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=B0=E5=A2=9Eapi=E6=9F=A5=E8=AF=A2?= =?UTF-8?q?=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/spring/ifs/api/MasterPartApi.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/main/java/com/spring/ifs/api/MasterPartApi.java b/src/main/java/com/spring/ifs/api/MasterPartApi.java index eef19fc2..570d312c 100644 --- a/src/main/java/com/spring/ifs/api/MasterPartApi.java +++ b/src/main/java/com/spring/ifs/api/MasterPartApi.java @@ -158,6 +158,10 @@ public class MasterPartApi { //执行check的操作 Map checkMap = IfsPlsqlUtils.execProcedureGetRecord(srv, "PART_CATALOG_API", "MODIFY__", PlsqlBaseMethodType.MODIFY, PlsqlBaseMethodAction.CHECK, inParam); + //检查是否需要填充checkMap的信息 + if (checkMap.get("WARNING") != null) { + inParam.put("WARNING", checkMap.get("WARNING")); + } //执行do的操作 Map resultMap = IfsPlsqlUtils.execProcedureGetRecord(srv, "PART_CATALOG_API", "MODIFY__", PlsqlBaseMethodType.MODIFY, PlsqlBaseMethodAction.DO, inParam);