Merge branch 'master' of http://ldj:3000/root/ldj

This commit is contained in:
bobwang 2024-05-11 09:51:43 +08:00
commit 3efa299bdd
2 changed files with 9 additions and 1 deletions

View File

@ -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