接口优化

This commit is contained in:
tongfei
2023-11-21 15:15:31 +08:00
parent ee9d44248a
commit bc2d8c0278
3 changed files with 27 additions and 0 deletions

View File

@@ -288,6 +288,8 @@ namespace WMS.Web.Repositories
Specifications = _erpBasicDataExtendService.GetMaterialSpecifications(materials, s.detail.MaterialId),
Qty =s.detail.AccruedQty,
DeliveredQty=s.detail.DeliveredQty,
ReceiveQty=s.detail.ReceiveQty,
AvailableQty =s.detail.AccruedQty- s.detail.ReceiveQty- s.detail.DeliveredQty,
Remark = s.detail.Remark
}).ToListAsync();
return list;