From fb0e42d6e26bb48cf83391b9a8c414ab3ea35acc Mon Sep 17 00:00:00 2001 From: Rui_Li <877258667@qq.com> Date: Mon, 14 Apr 2025 17:04:47 +0800 Subject: [PATCH] =?UTF-8?q?copy=20Part=20BUG=20=E4=BF=AE=E5=B0=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main/java/com/spring/ifs/api/BaseSearchApi.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/spring/ifs/api/BaseSearchApi.java b/src/main/java/com/spring/ifs/api/BaseSearchApi.java index bf7cb42a..528253c4 100644 --- a/src/main/java/com/spring/ifs/api/BaseSearchApi.java +++ b/src/main/java/com/spring/ifs/api/BaseSearchApi.java @@ -389,7 +389,7 @@ public class BaseSearchApi { searchSql.append("SELECT OBJID ifsRowId, OBJVERSION ifsRowVersion, CONTRACT site, PART_NO, CONFIGURATION_ID, LOT_BATCH_NO, SERIAL_NO,"); searchSql.append(" ifsapp.Inventory_Part_Unit_Cost_API.Get_Inventory_Value_By_Method(CONTRACT,PART_NO,CONFIGURATION_ID,LOT_BATCH_NO,SERIAL_NO) inventoryValue"); searchSql.append(" FROM ifsapp.INVENTORY_PART_UNIT_COST_SUM pcs"); - searchSql.append(" WHERE pcs.CONTRACT = : contract AND pcs.PART_NO = :partNo AND pcs.CONFIGURATION_ID = '*'"); + searchSql.append(" WHERE pcs.CONTRACT = :contract AND pcs.PART_NO = :partNo AND pcs.CONFIGURATION_ID = '*'"); //设置查询的入参 Map inParam = new HashMap<>(); inParam.put("contract", contract);