bug 修复
This commit is contained in:
@@ -35,7 +35,7 @@ namespace WMS.Web.Domain.Values
|
|||||||
public static ValueTuple<int, string> BoxOutStockTaskMaterialError = (70008, "该批箱物料和出库单中不存在,不能出库");
|
public static ValueTuple<int, string> BoxOutStockTaskMaterialError = (70008, "该批箱物料和出库单中不存在,不能出库");
|
||||||
|
|
||||||
public static ValueTuple<int, string> BoxIsTrueShelf = (80000, "该箱已上架,请选择其它箱进行上架!");
|
public static ValueTuple<int, string> BoxIsTrueShelf = (80000, "该箱已上架,请选择其它箱进行上架!");
|
||||||
public static ValueTuple<int, string> BoxNoData = (80000, "箱信息不存在");
|
public static ValueTuple<int, string> BoxNoData = (80000, "老OPS系统找不到该箱号");
|
||||||
public static ValueTuple<int, string> InStockTaskBoxIsHaveData = (80000, "该箱已收货");
|
public static ValueTuple<int, string> InStockTaskBoxIsHaveData = (80000, "该箱已收货");
|
||||||
public static ValueTuple<int, string> BoxMateriaNoData = (800010, "箱对应物料信息不存在");
|
public static ValueTuple<int, string> BoxMateriaNoData = (800010, "箱对应物料信息不存在");
|
||||||
public static ValueTuple<int, string> MateriaNoData = (800011, "物料信息不存在");
|
public static ValueTuple<int, string> MateriaNoData = (800011, "物料信息不存在");
|
||||||
|
|||||||
@@ -275,7 +275,7 @@ namespace WMS.Web.Repositories
|
|||||||
Qty = s.detail.AccruedQty,
|
Qty = s.detail.AccruedQty,
|
||||||
DeliveredQty = s.detail.DeliveredQty,
|
DeliveredQty = s.detail.DeliveredQty,
|
||||||
ReceiveQty = s.detail.ReceiveQty,
|
ReceiveQty = s.detail.ReceiveQty,
|
||||||
AvailableQty = s.detail.AccruedQty - s.detail.ReceiveQty - s.detail.DeliveredQty,
|
AvailableQty = s.detail.AccruedQty - s.detail.ReceiveQty,
|
||||||
Remark = s.detail.Remark,
|
Remark = s.detail.Remark,
|
||||||
ErpDetailId=s.detail.ErpDetailId
|
ErpDetailId=s.detail.ErpDetailId
|
||||||
}).ToListAsync();
|
}).ToListAsync();
|
||||||
|
|||||||
Reference in New Issue
Block a user