去掉0分配的上架任务
This commit is contained in:
parent
ab1dae9d2c
commit
8e7aca65ef
|
@ -1494,6 +1494,10 @@ namespace DeiNiu.wms.Logical
|
|||
|
||||
foreach (var item in locs2add)
|
||||
{
|
||||
if (item.Value <= 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
stock = new WmsStock();
|
||||
stock.locationId = item.Key.locationId;
|
||||
|
@ -1536,6 +1540,10 @@ namespace DeiNiu.wms.Logical
|
|||
|
||||
foreach (var item in locsUpdate)
|
||||
{
|
||||
if (item.Value <= 0)
|
||||
{
|
||||
continue;
|
||||
}
|
||||
|
||||
stock = item.Key;
|
||||
if (WmsConstants.IN_STOCK_PDA_SCAN)
|
||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue