1.移植盟讯的盘点下架功能

This commit is contained in:
hehaibing-1996
2024-05-29 18:02:46 +08:00
parent d1914bb2d1
commit aecc1dc4db
19 changed files with 821 additions and 18 deletions

View File

@ -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);
});