| | |
| | | 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, |
| | |
| | | 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, |
| | | }; |
| | |
| | | } |
| | | 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; |
| | | } |