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/LocationTransfer.cs | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Tiger.Business/WMS/Transaction/LocationTransfer.cs b/Tiger.Business.WMS/Transaction/LocationTransfer.cs similarity index 97% rename from Tiger.Business/WMS/Transaction/LocationTransfer.cs rename to Tiger.Business.WMS/Transaction/LocationTransfer.cs index 7d0748a..f8b0322 100644 --- a/Tiger.Business/WMS/Transaction/LocationTransfer.cs +++ b/Tiger.Business.WMS/Transaction/LocationTransfer.cs @@ -100,7 +100,7 @@ return action; } - Result<Inventory> result = Biz.WmsItem.Get(input.SN, input.AuthOption, true); + Result<Inventory> result = WMS_ITEM_Biz.WmsItem.Get(input.SN, input.AuthOption, true); if (!result.IsSuccessed) { action.IsSuccessed = false; @@ -170,7 +170,7 @@ } //鎵ц鍏ュ簱 - Result<PutOnInfo> onResult = Biz.WmsItem.PutOn(inv, input.AuthOption, target?.LOCATION_CODE, true); + Result<PutOnInfo> onResult = WMS_ITEM_Biz.WmsItem.PutOn(inv, input.AuthOption, target?.LOCATION_CODE, true); if (!onResult.IsSuccessed) { action.IsSuccessed = false; -- Gitblit v1.9.3