Commit d75132f7 authored by hongguangwu's avatar hongguangwu

缴费库优化

parent eeab694f
...@@ -507,7 +507,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa ...@@ -507,7 +507,7 @@ public class TPaymentInfoServiceImpl extends ServiceImpl<TPaymentInfoMapper, TPa
if (!errorMessageList.isEmpty()) { if (!errorMessageList.isEmpty()) {
boolean isAllTrue = true; boolean isAllTrue = true;
for (ErrorDetailVO d : errorMessageList) { for (ErrorDetailVO d : errorMessageList) {
if (d.getResult() == 0) { if (Common.isEmpty(d.getResult()) || d.getResult() == 0) {
isAllTrue = false; isAllTrue = false;
break; break;
} }
......
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