服务端的TigerApi 框架,基于.NET6 2024 版本
Rodney Chen
2025-04-15 ba08e05138d882a2a5bc603a166b07af071cc1a1
Tiger.Business.WMS/Transaction/ReprintLabel.cs
@@ -199,7 +199,7 @@
                                ITEM_CODE = inv.Barcode.ItemCode,
                                AUTH_ORG = input.AuthOption.CurOrg,
                                STATUS = WMS_ITEM.STATUSs.WaitIn.GetValue(),
                                QTY = inv.Barcode.Qty.ToDecimal(),
                                QTY = inv.Barcode.Qty.ToDouble(),
                                PROD_DATE = inv.Barcode.DateCode.ToDateTime(),
                                ERP_WH = CurScanShelf.WarehouseCode,
                                UNIT = inv.Barcode.Unit,
@@ -212,7 +212,7 @@
                                SN = inv.Barcode.SN,
                                AUTH_ORG = input.AuthOption.CurOrg,
                                ITEM_CODE = inv.Barcode.ItemCode,
                                QTY = inv.Barcode.Qty.ToDecimal(),
                                QTY = inv.Barcode.Qty.ToDouble(),
                                ERP_WH = CurScanShelf.WarehouseCode,
                                UNIT = inv.Barcode.Unit,
                            };
@@ -235,11 +235,11 @@
                        }
                        else if (inv.Items.Count == 1)
                        {
                            inv.Items.First().QTY = inv.Barcode.Qty.ToDecimal();
                            inv.Items.First().QTY = inv.Barcode.Qty.ToDouble();
                            inv.Items.First().ERP_WH = CurScanShelf.WarehouseCode;
                            inv.Items.First().AUTH_ORG = input.AuthOption.CurOrg;
                            inv.Packages.First().QTY = inv.Barcode.Qty.ToDecimal();
                            inv.Packages.First().QTY = inv.Barcode.Qty.ToDouble();
                            inv.Packages.First().ERP_WH = CurScanShelf.WarehouseCode;
                            inv.Packages.First().AUTH_ORG = input.AuthOption.CurOrg;
                        }