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/InMatStorage.cs | 8 ++++---- 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/Tiger.Business/WMS/Transaction/InMatStorage.cs b/Tiger.Business.WMS/Transaction/InMatStorage.cs similarity index 97% rename from Tiger.Business/WMS/Transaction/InMatStorage.cs rename to Tiger.Business.WMS/Transaction/InMatStorage.cs index 2a5f40e..5e42c67 100644 --- a/Tiger.Business/WMS/Transaction/InMatStorage.cs +++ b/Tiger.Business.WMS/Transaction/InMatStorage.cs @@ -70,7 +70,7 @@ return action; } var nLocation = new WMS_LOCATION(); - 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; @@ -209,7 +209,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; @@ -310,7 +310,7 @@ pmdt018 = billHeader.REMARK }); } - var ret = Biz.ErpT100.GenerateOtherIn(new OtherInputParameter<Detail4> + var ret = ErpT100.GenerateOtherIn(new OtherInputParameter<Detail4> { parameter = new InParameter<Detail4> { @@ -356,7 +356,7 @@ itemDesc = inv.ItemInfo.SPEC, qty = inv.CurPkg.QTY, dateCode = inv.Barcode.ProdDate.ToString()??DateTime.MinValue.ToString(), - Tips = Biz.iWMS.GetERP_RECEIPTTips(barcodeScanneds[0]?.BILLCODE, barcodeScanneds[0]?.ITEM_CODE),//isCompleted ? "鏁伴噺锛�0 (0鐩�)" : + Tips = iWMS.GetERP_RECEIPTTips(barcodeScanneds[0]?.BILLCODE, barcodeScanneds[0]?.ITEM_CODE),//isCompleted ? "鏁伴噺锛�0 (0鐩�)" : IsScanShelf = false }; } -- Gitblit v1.9.3