Merge branch 'master' of http://ldj:3000/root/ldj
This commit is contained in:
commit
3efa299bdd
|
@ -1494,6 +1494,10 @@ namespace DeiNiu.wms.Logical
|
||||||
|
|
||||||
foreach (var item in locs2add)
|
foreach (var item in locs2add)
|
||||||
{
|
{
|
||||||
|
if (item.Value <= 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
stock = new WmsStock();
|
stock = new WmsStock();
|
||||||
stock.locationId = item.Key.locationId;
|
stock.locationId = item.Key.locationId;
|
||||||
|
@ -1536,6 +1540,10 @@ namespace DeiNiu.wms.Logical
|
||||||
|
|
||||||
foreach (var item in locsUpdate)
|
foreach (var item in locsUpdate)
|
||||||
{
|
{
|
||||||
|
if (item.Value <= 0)
|
||||||
|
{
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
|
||||||
stock = item.Key;
|
stock = item.Key;
|
||||||
if (WmsConstants.IN_STOCK_PDA_SCAN)
|
if (WmsConstants.IN_STOCK_PDA_SCAN)
|
||||||
|
|
File diff suppressed because one or more lines are too long
Loading…
Reference in New Issue