Browse Source

修改bug。

master
刘忱 2 years ago
parent
commit
bbf817f04c
  1. 2
      win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/service/rule/RuleServiceImpl.java

2
win-module-wms/win-module-wms-biz/src/main/java/com/win/module/wms/service/rule/RuleServiceImpl.java

@ -546,7 +546,7 @@ public class RuleServiceImpl implements RuleService {
JSONObject conditionObject = conditionArray.getJSONObject(i);
for (String key : paramsMap.keySet()) {
if (key.equals(conditionObject.get("ParamCode")) && conditionObject.get("ParamCode") != null) {
boolean result2 = this.checkCondition(conditionObject, key, params.get(key));
boolean result2 = this.checkCondition(conditionObject, key, paramsMap.get(key));
if (!result2) {
result1 = false;
break;

Loading…
Cancel
Save