1.移植查询电压值功能
This commit is contained in:
@ -691,6 +691,12 @@ namespace WCS.BLL.Services.Service
|
||||
outOrderMatDetails = outOrderMatDetails.Where(t => t.MatCode == matCode)
|
||||
.ToList();
|
||||
Logs.Write($"出库单{order.OrderNumber},本次亮灯物料{matCode}!",LogsType.Outstore);
|
||||
|
||||
//分批次亮灯再计算一次出哪些货架 以免亮大灯不亮小灯
|
||||
shelfIds = outOrderMatDetails.Select(t => t.StoreInfo.ShelfId)
|
||||
.Distinct()
|
||||
.ToList();
|
||||
shelfs = ShelfManager.Shelves.Where(t => shelfIds.Contains(t.ShelfId)).ToList();
|
||||
}
|
||||
//相同物料不存在盘数超过n的情况,剩余物料全部亮灯
|
||||
else
|
||||
@ -698,6 +704,8 @@ namespace WCS.BLL.Services.Service
|
||||
//剩余物料全出
|
||||
Logs.Write($"出库单{order.OrderNumber},剩余物料灯全亮!", LogsType.Outstore);
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
||||
//对应的货架对应位置 进入出库模式 亮灯
|
||||
|
Reference in New Issue
Block a user