修复bug

This commit is contained in:
18942506660
2024-11-29 09:19:33 +08:00
parent bfd4f880f9
commit d158717eb2
2 changed files with 12 additions and 0 deletions

View File

@@ -85,5 +85,15 @@ namespace WMS.Web.Core.Dto.OutStockTask
///</summary> ///</summary>
[Column("重量KG")] [Column("重量KG")]
public decimal? BoxWeight { get; set; } = null; public decimal? BoxWeight { get; set; } = null;
/// <summary>
/// 箱内数量
///</summary>
[Column("箱内数量")]
public decimal Qty { get; set; }
/// <summary>
/// 应出库数量
///</summary>
[Column("应出库数量")]
public decimal AccruedQty { get; set; }
} }
} }

View File

@@ -661,6 +661,8 @@ namespace WMS.Web.Domain.Services
BoxWide = d.BoxWide, BoxWide = d.BoxWide,
BoxHigh = d.BoxHigh, BoxHigh = d.BoxHigh,
BoxWeight = d.BoxWeight, BoxWeight = d.BoxWeight,
Qty = d.Qty,
AccruedQty = d.AccruedQty,
SerialNumbers = "" SerialNumbers = ""
}); });
} }