服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2024-05-31 d4c326deaa51e7d4897a84afc339684012b8cfbe
Tiger.Business.WMS/Transaction/InMatStorage.cs
ÎļþÃû´Ó 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
                };
            }