From 6cff865611d0d6b01b0d8e322db155f6833e947e Mon Sep 17 00:00:00 2001 From: YangYuGang <1378265336@qq.com> Date: 星期一, 10 三月 2025 19:39:14 +0800 Subject: [PATCH] 收货单、退货单数据同步 --- 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