From a2a5a9a1ea7b116f436e7fe20517e4893f9c3c2d Mon Sep 17 00:00:00 2001 From: yangtm Date: Fri, 7 Mar 2025 14:57:18 +0800 Subject: [PATCH] =?UTF-8?q?=E8=B4=A7=E6=9F=9C=E5=88=A4=E6=96=AD=E5=A2=9E?= =?UTF-8?q?=E5=8A=A0=E7=89=A9=E6=96=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../ICSSoft.DataProject/ICSWareHouseLotInfoService.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSWareHouseLotInfoService.cs b/ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSWareHouseLotInfoService.cs index 263d3f3..f1645ef 100644 --- a/ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSWareHouseLotInfoService.cs +++ b/ICSSoft.WMS.WebAPI/ICSSoft.DataProject/ICSWareHouseLotInfoService.cs @@ -684,22 +684,22 @@ namespace ICSSoft.DataProject locationsql = @"select B.LocationCode from ICSDeliveryNotice A INNER JOIN ICSInventoryDetail B ON B.INVCode=A.InvCode AND B.WHCode=A.WHCode AND B.WorkPoint=A.WorkPoint - WHERE A.DNCode='{0}' AND A.WorkPoint='{1}'"; + WHERE A.DNCode='{0}' AND A.WorkPoint='{1}' and a.invcode='{2}'"; } else if (BusinessCode == "18") { locationsql = @"select B.LocationCode from ICSManufactureReceive A INNER JOIN ICSInventoryDetail B ON B.INVCode=A.InvCode AND B.WHCode=A.WHCode AND B.WorkPoint=A.WorkPoint - WHERE A.RCVCode='{0}' AND A.WorkPoint='{1}'"; + WHERE A.RCVCode='{0}' AND A.WorkPoint='{1}' and a.invcode='{2}'"; } else if (BusinessCode == "16") { locationsql = @"select B.LocationCode from ICSMOApplyNeg A INNER JOIN ICSMOApplyNegDetail C ON C.ApplyNegCode=A.ApplyNegCode AND C.WorkPoint=A.WorkPoint INNER JOIN ICSInventoryDetail B ON B.INVCode=C.InvCode AND B.WHCode=C.WHCode AND B.WorkPoint=C.WorkPoint - WHERE A.ApplyNegCode='{0}' AND A.WorkPoint='{1}'"; + WHERE A.ApplyNegCode='{0}' AND A.WorkPoint='{1}' and c.invcode='{2}'"; } - locationsql = string.Format(locationsql, TransCode, WorkPoint); + locationsql = string.Format(locationsql, TransCode, WorkPoint, INVCode); DataTable locationdt = DBHelper.SQlReturnData(locationsql, cmd); if (locationdt.Rows.Count == 0) {