1.移植盟讯的盘点下架功能
This commit is contained in:
@ -1456,7 +1456,7 @@ namespace WCS.BLL.HardWare
|
||||
MatSupplier = inventoryDetail.MatSupplier,
|
||||
OrderNumber = orderMatDetails.OrderNumber,
|
||||
|
||||
Direction = DirectionEnum.出库,
|
||||
Direction = orderMatDetails.IsMXPD == false ? DirectionEnum.出库 : DirectionEnum.盘点下架,
|
||||
};
|
||||
//库位表 修改
|
||||
storeInfo.CurrentMatSn = string.Empty;
|
||||
@ -1509,6 +1509,7 @@ namespace WCS.BLL.HardWare
|
||||
var isExsistOut = CurrentOutStoreMatSNs.Any();
|
||||
|
||||
var tempOrder = CurrentOutOrder;
|
||||
var isMXPD = orderMatDetails.IsMXPD == true;
|
||||
//通知前台刷新
|
||||
Task.Run(() =>
|
||||
{
|
||||
@ -1519,7 +1520,7 @@ namespace WCS.BLL.HardWare
|
||||
{
|
||||
IsWarning = false,
|
||||
ClientIp = WebSocketIpAddress,
|
||||
WarningType = WarningTypeEnum.通知刷新出库
|
||||
WarningType = isMXPD ? WarningTypeEnum.通知刷新盟讯盘点 : WarningTypeEnum.通知刷新出库
|
||||
};
|
||||
WarningManager.SendWarning(messageMode);
|
||||
});
|
||||
|
Reference in New Issue
Block a user