调整接口
This commit is contained in:
@@ -283,7 +283,7 @@ namespace WMS.Web.Domain.Services
|
||||
if (current_entityDets != null && current_entityDets.Count != 0 && x.ErpDetailId == current_entityDets.FirstOrDefault().ErpDetailId)
|
||||
{
|
||||
var current_entityDet_matQty = current_entityDets.Sum(x => x.Qty);
|
||||
x.DeliveredQty = x.ReceiveQty;
|
||||
x.DeliveredQty = x.DeliveredQty+ current_entityDet_matQty;
|
||||
x.RealityQty = x.RealityQty + current_entityDet_matQty;
|
||||
}
|
||||
});
|
||||
@@ -421,7 +421,7 @@ namespace WMS.Web.Domain.Services
|
||||
{
|
||||
var current_entityDet_matQty = current_entityDets.Sum(x => x.Qty);
|
||||
x.ReceiveQty = x.ReceiveQty + current_entityDet_matQty;
|
||||
x.DeliveredQty = x.ReceiveQty;
|
||||
x.DeliveredQty = x.DeliveredQty + current_entityDet_matQty;
|
||||
x.RealityQty = x.RealityQty + current_entityDet_matQty;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user