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/OutWorkOrder.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tiger.Business/WMS/Transaction/OutWorkOrder.cs b/Tiger.Business.WMS/Transaction/OutWorkOrder.cs similarity index 98% rename from Tiger.Business/WMS/Transaction/OutWorkOrder.cs rename to Tiger.Business.WMS/Transaction/OutWorkOrder.cs index 78e46ea..ac6ab1b 100644 --- a/Tiger.Business/WMS/Transaction/OutWorkOrder.cs +++ b/Tiger.Business.WMS/Transaction/OutWorkOrder.cs @@ -259,7 +259,7 @@ { lock (item.Key.lockObj) { - dic[item.Key] = Biz.WmsItem.Suggest(req.BILLCODE, item.Key.ItemCode, item.Key.WarehouseCode, null, null, null, input.AuthOption, item.Key.actQty); + dic[item.Key] = WMS_ITEM_Biz.WmsItem.Suggest(req.BILLCODE, item.Key.ItemCode, item.Key.WarehouseCode, null, null, null, input.AuthOption, item.Key.actQty); } }); } @@ -380,7 +380,7 @@ } //瑙f瀽鏉$爜 - 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; @@ -701,7 +701,7 @@ item.SOURCE_CODE = "WORK_ORDER"; item.SOURCE_ORDER = dtls.First().SOURCECODE; } - Result<TakeDownInfo> downResult = Biz.WmsItem.TakeDown(CurInv, input.AuthOption, WMS_ITEM.STATUSs.Sended, !isCutting); + Result<TakeDownInfo> downResult = WMS_ITEM_Biz.WmsItem.TakeDown(CurInv, input.AuthOption, WMS_ITEM.STATUSs.Sended, !isCutting); if (!downResult.IsSuccessed) { action.IsSuccessed = false; -- Gitblit v1.9.3