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/OutOther.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tiger.Business/WMS/Transaction/OutOther.cs b/Tiger.Business.WMS/Transaction/OutOther.cs similarity index 98% rename from Tiger.Business/WMS/Transaction/OutOther.cs rename to Tiger.Business.WMS/Transaction/OutOther.cs index c888a07..86c33bc 100644 --- a/Tiger.Business/WMS/Transaction/OutOther.cs +++ b/Tiger.Business.WMS/Transaction/OutOther.cs @@ -238,7 +238,7 @@ { lock (item.Key.lockObj) { - dic[item.Key] = Biz.WmsItem.Suggest(req.BILLCODE, item.Key.ItemCode, req.Dtls.Where(q=>q.ITEM_CODE==item.Key.ItemCode).Select(s=>s.WAREHOUSECODE).FirstOrDefault(), null, null, null, input.AuthOption, item.Key.actQty); + dic[item.Key] = WMS_ITEM_Biz.WmsItem.Suggest(req.BILLCODE, item.Key.ItemCode, req.Dtls.Where(q=>q.ITEM_CODE==item.Key.ItemCode).Select(s=>s.WAREHOUSECODE).FirstOrDefault(), null, null, null, input.AuthOption, item.Key.actQty); } }); } @@ -360,7 +360,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; @@ -607,7 +607,7 @@ item.TRANS_NO = req.BILLCODE; item.TRANS_LINE = string.Join(",", dtls.Select(x => x.BILLLINE)); } - 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