Commit 8eead2be by 泽锋 李

安全库存配置,支持不备货

parent f0c01c8f
...@@ -101,7 +101,7 @@ namespace AutoTurnOver.Services ...@@ -101,7 +101,7 @@ namespace AutoTurnOver.Services
if (m.type == (int)Safe_inventoryType.仓库_按历史计算) if (m.type == (int)Safe_inventoryType.仓库_按历史计算)
{ {
if (m.param <= 0) if (m.param < 0)
{ {
return "倍数必填"; return "倍数必填";
} }
...@@ -208,7 +208,7 @@ namespace AutoTurnOver.Services ...@@ -208,7 +208,7 @@ namespace AutoTurnOver.Services
} }
else if (m.type == (int)Safe_UpperLimitType.仓库_SKU_按历史计算) else if (m.type == (int)Safe_UpperLimitType.仓库_SKU_按历史计算)
{ {
if (m.param <= 0) if (m.param < 0)
{ {
return "倍数必填"; return "倍数必填";
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment