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/OutTransfer.cs |    8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/Tiger.Business/WMS/Transaction/OutTransfer.cs b/Tiger.Business.WMS/Transaction/OutTransfer.cs
similarity index 98%
rename from Tiger.Business/WMS/Transaction/OutTransfer.cs
rename to Tiger.Business.WMS/Transaction/OutTransfer.cs
index 8b192ac..2684fab 100644
--- a/Tiger.Business/WMS/Transaction/OutTransfer.cs
+++ b/Tiger.Business.WMS/Transaction/OutTransfer.cs
@@ -91,7 +91,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);
                         }
                     });
                 }
@@ -293,7 +293,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;
@@ -497,7 +497,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);
+                //Result<TakeDownInfo> downResult = WMS_ITEM_Biz.WmsItem.TakeDown(CurInv, input.AuthOption, WMS_ITEM.STATUSs.Sended);
                 //if (!downResult.IsSuccessed)
                 //{
                 //    action.IsSuccessed = false;
@@ -620,7 +620,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