From 422ca5b2fb6f9270ae0067a1c0dc9a02b84b9d67 Mon Sep 17 00:00:00 2001 From: Rodney Chen <rodney.chen@hotmail.com> Date: 星期三, 19 三月 2025 01:19:39 +0800 Subject: [PATCH] 优化了一些已知问题 --- Tiger.Business.WMS/Transaction/Old/ProductionMaterialReq.cs | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Tiger.Business.WMS/Transaction/Old/ProductionMaterialReq.cs b/Tiger.Business.WMS/Transaction/Old/ProductionMaterialReq.cs index 6b4e19d..d36bcfd 100644 --- a/Tiger.Business.WMS/Transaction/Old/ProductionMaterialReq.cs +++ b/Tiger.Business.WMS/Transaction/Old/ProductionMaterialReq.cs @@ -54,8 +54,8 @@ public bool his_isComplete { get; set; } public bool isCutting { get; set; } public string ScanAfCut { get; set; } - public decimal cutQty { get; set; } - public decimal remainQty { get; set; } + public double cutQty { get; set; } + public double remainQty { get; set; } public string QrCode { get; set; } public BIZ_WMS_TRANSFER transferH = null; @@ -623,7 +623,7 @@ transferSn = null; var isFirstDtl = true; remainQty = 0; - decimal curQty = CurInv.CurPkg.QTY; + double curQty = CurInv.CurPkg.QTY; foreach (var d in dtls) { var actPrQty = d.PRQTY - d.QTY; -- Gitblit v1.9.3