Commit a56810da by yuquan.zhu

审批提交bug

parent fd6db2f6
...@@ -277,19 +277,22 @@ public class RouterUtils { ...@@ -277,19 +277,22 @@ public class RouterUtils {
}else { }else {
Compare compare; Compare compare;
for (Condition condition : listCondition) { for (Condition condition : listCondition) {
boolean condition_value = false;
for (String string : condition.getValues()) { for (String string : condition.getValues()) {
if(obj.get(condition.getKey(),FromData.class).getValue() != null) { if(obj.get(condition.getKey(),FromData.class).getValue() != null) {
// 简单工厂模式 - 判断条件 // 简单工厂模式 - 判断条件
compare = CompareFactory.createCompare(obj.get(condition.getKey(),FromData.class).getValue(), string, condition.getFormat()); compare = CompareFactory.createCompare(obj.get(condition.getKey(),FromData.class).getValue(), string, condition.getFormat());
if (!compare.GetResutl()) { if (compare.GetResutl()) {
condition_b = false; condition_value = true;
} }
}else { }else {
throw new Exception("审批流程设置有误"); throw new Exception("审批流程设置有误");
} }
}
if(condition_value) {
condition_b = true;
}else {
condition_b = false;
} }
} }
} }
......
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