BUG修复

This commit is contained in:
tongfei
2023-12-04 17:45:08 +08:00
parent f785008033
commit 6d90efb5d6
2 changed files with 6 additions and 1 deletions

View File

@@ -332,7 +332,7 @@ namespace WMS.Web.Repositories
Specifications = _erpBasicDataExtendService.GetMaterialSpecifications(materials, s.MaterialId),
Qty = s.AccruedQty,
DeliveredQty = s.DeliveredQty,
AvailableQty = s.AccruedQty - s.ReceiveQty - s.DeliveredQty,
AvailableQty = s.AccruedQty - s.ReceiveQty,
Remark = s.Remark,
ErpDetailId=s.ErpDetailId
}).ToListAsync();