From 74f4d54e15111db46e15680cb47ba7bec847fc3b Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期五, 14 三月 2025 15:47:45 +0800 Subject: [PATCH] 增加送货单(U9)清点和收货单(U9)上架的Controller --- Tiger.Business.WMS/Common/Barcode/Barcode.cs | 12 ++++++++---- 1 files changed, 8 insertions(+), 4 deletions(-) diff --git a/Tiger.Business.WMS/Common/Barcode/Barcode.cs b/Tiger.Business.WMS/Common/Barcode/Barcode.cs index 0892c20..31c4935 100644 --- a/Tiger.Business.WMS/Common/Barcode/Barcode.cs +++ b/Tiger.Business.WMS/Common/Barcode/Barcode.cs @@ -109,7 +109,7 @@ /// <summary> /// 鏁伴噺 /// </summary> - public decimal? Qty { get => Convert.ToDecimal(BarcodeAnalysis.GetDouble(QtyStr)); } + public double? Qty { get => BarcodeAnalysis.GetDouble(QtyStr); } /// <summary> /// 姣涢噸 @@ -119,11 +119,14 @@ /// 姣涢噸 /// </summary> public double? GrossWeight { get => BarcodeAnalysis.GetDouble(GrossWeightStr); } - /// <summary> - /// 鏂欏彿闀垮害 + /// 浠撳簱 /// </summary> - public int ItemLength { get; set; } + public string Warehouse { get; set; } + /// <summary> + /// 鍌ㄤ綅 + /// </summary> + public string Location { get; set; } /// <summary> /// 鏉$爜鍒嗘瀽寮傚父淇℃伅 @@ -179,6 +182,7 @@ /// </summary> public bool IsQRCode => MetaSn.Contains(","); + public enum Types { /// <summary> -- Gitblit v1.9.3