From d4c326deaa51e7d4897a84afc339684012b8cfbe Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期五, 31 五月 2024 23:13:28 +0800 Subject: [PATCH] 把WMS移出Business --- Tiger.Business.WMS/Transaction/OtherInLocationChecking.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tiger.Business/WMS/Transaction/OtherInLocationChecking.cs b/Tiger.Business.WMS/Transaction/OtherInLocationChecking.cs similarity index 99% rename from Tiger.Business/WMS/Transaction/OtherInLocationChecking.cs rename to Tiger.Business.WMS/Transaction/OtherInLocationChecking.cs index 26283d5..5a1d400 100644 --- a/Tiger.Business/WMS/Transaction/OtherInLocationChecking.cs +++ b/Tiger.Business.WMS/Transaction/OtherInLocationChecking.cs @@ -110,7 +110,7 @@ return action; } input.AuthOption.OrgCode = input.AuthOption.OrgCode.IsNullOrEmpty() ? input.AuthOption.CurOrg : input.AuthOption.OrgCode; - Result<Inventory> result = WarehouseName.Contains("瀹緵") ? Biz.WmsItem.GetK(input.SN, input.AuthOption, false) : Biz.WmsItem.Get(input.SN, input.AuthOption, false); + Result<Inventory> result = WarehouseName.Contains("瀹緵") ? WMS_ITEM_Biz.WmsItem.GetK(input.SN, input.AuthOption, false) : WMS_ITEM_Biz.WmsItem.Get(input.SN, input.AuthOption, false); if (result.Flag != Result.Flags.Success) { action.IsSuccessed = false; @@ -303,7 +303,7 @@ //var nWarehouseCodes = nScannedBarcodes.Select(x => x.WarehouseCode).Distinct().ToList(); //鏂板缓鍏朵粬鍏ュ簱鍗曟嵁澶� OtherInstockHeader - Result ruleResult = Biz.CodeRule["OI001"].Generate("OI"); //Biz.iWMS.GetBillNoByType("CI"); + Result ruleResult = Biz.CodeRule["OI001"].Generate("OI"); //iWMS.GetBillNoByType("CI"); if (!ruleResult.IsSuccessed) { throw new Exception(ruleResult.ExceptionMsg.Message); -- Gitblit v1.9.3