拉取源数据的方式

This commit is contained in:
tongfei
2023-12-01 14:20:17 +08:00
parent 5f6d1d0de0
commit b6052dea49
15 changed files with 110 additions and 21 deletions

View File

@@ -308,7 +308,8 @@ namespace WMS.Web.Repositories
DeliveredQty = s.detail.DeliveredQty,
ReceiveQty = s.detail.ReceiveQty,
AvailableQty = s.detail.AccruedQty - s.detail.ReceiveQty - s.detail.DeliveredQty,
Remark = s.detail.Remark
Remark = s.detail.Remark,
ErpDetailId=s.detail.ErpDetailId
}).ToListAsync();
return list;
@@ -363,7 +364,8 @@ namespace WMS.Web.Repositories
Specifications = _erpBasicDataExtendService.GetMaterialSpecifications(materials, s.MaterialId),
Qty = s.AccruedQty,
DeliveredQty = s.DeliveredQty,
Remark = s.Remark
Remark = s.Remark,
ErpDetailId=s.ErpDetailId
}).ToListAsync();
//找箱
var task_box = await _context.InstockTaskBox.Where(x => ids.Contains(x.TaskId))