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/CustomerSupplyInNew.cs |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/Tiger.Business/WMS/Transaction/CustomerSupplyInNew.cs b/Tiger.Business.WMS/Transaction/CustomerSupplyInNew.cs
similarity index 97%
rename from Tiger.Business/WMS/Transaction/CustomerSupplyInNew.cs
rename to Tiger.Business.WMS/Transaction/CustomerSupplyInNew.cs
index 069b5fb..049f577 100644
--- a/Tiger.Business/WMS/Transaction/CustomerSupplyInNew.cs
+++ b/Tiger.Business.WMS/Transaction/CustomerSupplyInNew.cs
@@ -79,7 +79,7 @@
                         pmdt018 = billHeader.REMARK
                     });
                 }
-                var ret = Biz.ErpT100.GenerateOtherIn(new OtherInputParameter<Detail4>
+                var ret = ErpT100.GenerateOtherIn(new OtherInputParameter<Detail4>
                 {
                     parameter = new InParameter<Detail4>
                     {
@@ -144,7 +144,7 @@
                 }
                 var nLocation = new WMS_LOCATION();
                 input.AuthOption.OrgCode.IsNullOrEmpty(input.AuthOption.CurOrg);
-                Result<Inventory> result = Biz.WmsItem.GetK(input.SN, input.AuthOption, true);
+                Result<Inventory> result = WMS_ITEM_Biz.WmsItem.GetK(input.SN, input.AuthOption, true);
                 if (!result.IsSuccessed)
                 {
                     action.IsSuccessed = false;
@@ -278,7 +278,7 @@
                 }
 
                 //鎵ц鍏ュ簱
-                Result<PutOnInfo> onResult = Biz.WmsItem.PutOn(inv, input.AuthOption, nLocation.LOCATION_CODE);
+                Result<PutOnInfo> onResult = WMS_ITEM_Biz.WmsItem.PutOn(inv, input.AuthOption, nLocation.LOCATION_CODE);
                 if (!onResult.IsSuccessed) {
                     action.IsSuccessed = false;
                     action.LocaleMsg = onResult.LocaleMsg;
@@ -362,7 +362,7 @@
                             pmdt018 = billHeader.REMARK
                         });
                     }
-                    var ret = Biz.ErpT100.GenerateOtherIn(new OtherInputParameter<Detail4>
+                    var ret = ErpT100.GenerateOtherIn(new OtherInputParameter<Detail4>
                     {
                         parameter = new InParameter<Detail4>
                         {
@@ -411,7 +411,7 @@
                     //StateFlag = inv.StateFlag,
                     LocationCode = nLocation.LOCATION_CODE,
                     ReceiptCode = barcodeScanned?.BUSINESSCODE,
-                    IncompleteTips = Biz.iWMS.GetERP_OTH_INTips(barcodeScanned?.BUSINESSCODE, barcodeScanned?.ITEM_CODE),//isCompleted ? "鏁伴噺锛�0 (0鐩�)" : 
+                    IncompleteTips = iWMS.GetERP_OTH_INTips(barcodeScanned?.BUSINESSCODE, barcodeScanned?.ITEM_CODE),//isCompleted ? "鏁伴噺锛�0 (0鐩�)" : 
                     IsScanShelf = false
                 };
             }

--
Gitblit v1.9.3