增加统计总数
This commit is contained in:
Binary file not shown.
@@ -303,6 +303,10 @@ namespace WMS.Web.Api.Controllers
|
||||
{
|
||||
x.MaterialSubStocks = materialSubStocks.Where(t => t.MaterialNumber == x.MaterialNumber && t.StockCode==x.StockCode && t.OrgCode == x.OrgCode).Select(x => x.SubStock).ToList();
|
||||
});
|
||||
foreach(var l in list)
|
||||
{
|
||||
l.WaitShelfQty = l.Details.Sum(s => s.WaitShelfQty);
|
||||
}
|
||||
|
||||
return ResultList<SourceBillNoNoPurchaseQueryResponse>.ReSuccess(list);
|
||||
}
|
||||
|
||||
@@ -2158,6 +2158,11 @@
|
||||
来源单号
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WMS.Web.Core.Dto.InStockTask.SourceBillNoNoPurchaseQueryResponse.WaitShelfQty">
|
||||
<summary>
|
||||
待上架数量(明细行待上架数量总数)
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:WMS.Web.Core.Dto.InStockTask.SourceBillNoNoPurchaseQueryResponse.Boxs">
|
||||
<summary>
|
||||
箱信息
|
||||
|
||||
@@ -19,6 +19,10 @@ namespace WMS.Web.Core.Dto.InStockTask
|
||||
/// 来源单号
|
||||
/// </summary>
|
||||
public string SourceBillNo { get; set; }
|
||||
/// <summary>
|
||||
/// 待上架数量(明细行待上架数量总数)
|
||||
/// </summary>
|
||||
public decimal WaitShelfQty { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 箱信息
|
||||
|
||||
Reference in New Issue
Block a user