Administrator
2024-02-02 007b546dfd4ac45ada1f6e1b84dbd11ad03fc940
修改bug
2个文件已修改
6 ■■■■ 已修改文件
Wms/Model/InterFaceModel/AsnModels.cs 2 ●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/WMS.BLL/BllAsnServer/ArrivalNoticeServer.cs 4 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
Wms/Model/InterFaceModel/AsnModels.cs
@@ -51,7 +51,7 @@
        /// <summary>
        /// 数量
        /// </summary>
        public int Qty { get; set; }
        public decimal? Qty { get; set; }
        /// <summary>
        /// 包装编号
Wms/WMS.BLL/BllAsnServer/ArrivalNoticeServer.cs
@@ -830,7 +830,7 @@
                        Standard = skuModel.Standard,
                        LotNo = asnDetailModel.LotNo,
                        LotText = "",
                        Qty = asnDetailModel.Qty,
                        Qty = (decimal)asnDetailModel.Qty,
                        PackagNo = asnDetailModel.PackagNo,
                        SupplierLot = asnDetailModel.SupplierLot,
                        Status = "0",
@@ -885,7 +885,7 @@
                    {
                        SkuNo = d.SkuNo,
                        LotNo = d.LotNo,
                        Qty = int.Parse(d.CompleteQty.ToString()),
                        Qty = d.CompleteQty,
                        PackagNo = d.PackagNo,
                        SupplierLot = d.SupplierLot
                    };