服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-03-10 40df5d91f800bb8b7be2638c13b4f9292d461221
Tiger.Business.WMS/Transaction/Old/InMatStorage.cs
@@ -139,7 +139,7 @@
                //            return action;
                //        }
                //        if (barcodeScanned.SCANQTY != inv.Barcode.Qty.ToDecimal())
                //        if (barcodeScanned.SCANQTY != inv.Barcode.Qty.ToDouble())
                //        {
                //            action.IsSuccessed = false;
                //            action.LocaleMsg = Biz.L("WMS.CustSupChk.ScanItem.DiffQty", inv.SN); //$"此物料条码入库数量与清点数量不同,不能入库";
@@ -235,7 +235,7 @@
                   .Where(t=> t.STATUS == WMS_ITEM.STATUSs.InStore.GetValue() || inv.Items.Select(q=>q.SN).Contains(t.SN))
                   .Sum(x => x.SCANQTY);
                //billDetail.DELIVERYDATE = DateTime.Now.Date;
               //billDetail.QTY = total; //inv.Barcode.Qty.ToDecimal();
               //billDetail.QTY = total; //inv.Barcode.Qty.ToDouble();
                var isCompleted = false;
                // 更新单据HEADER状态
                var billHeader = Biz.Db.Queryable<BIZ_ERP_RECEIPT>().Where(t => t.BILLCODE.ToUpper() == billCode).First();