Commit 5c6ed2ef authored by hongguangwu's avatar hongguangwu

MVP1.7.0 优化

parent 25ccbb1d
...@@ -331,10 +331,14 @@ public class TCheckBankNoServiceImpl extends ServiceImpl<TCheckBankNoMapper, TCh ...@@ -331,10 +331,14 @@ public class TCheckBankNoServiceImpl extends ServiceImpl<TCheckBankNoMapper, TCh
noCurlist.add(check); noCurlist.add(check);
} }
} }
} else {
if (check.getBankNo().length() > 50) {
bankMap.put(check.getBankNo() + CommonConstants.DOWN_LINE_STRING + check.getName(), false);
} else { } else {
noCurlist.add(check); noCurlist.add(check);
} }
} }
}
List<TCheckBankNo> saveList = new ArrayList<>(); List<TCheckBankNo> saveList = new ArrayList<>();
if (!noCurlist.isEmpty()) { if (!noCurlist.isEmpty()) {
boolean canCheck = canCheckService.getCanCheck(); boolean canCheck = canCheckService.getCanCheck();
......
...@@ -270,11 +270,15 @@ public class TCheckMobileServiceImpl extends ServiceImpl<TCheckMobileMapper, TCh ...@@ -270,11 +270,15 @@ public class TCheckMobileServiceImpl extends ServiceImpl<TCheckMobileMapper, TCh
cur = noMap.get(check); cur = noMap.get(check);
if (cur != null) { if (cur != null) {
backMap.put(check, cur); backMap.put(check, cur);
} else {
if (check.length() > 11) {
backMap.put(check, false);
} else { } else {
phones.append(check).append(CommonConstants.COMMA_STRING); phones.append(check).append(CommonConstants.COMMA_STRING);
noCurlist.add(check); noCurlist.add(check);
} }
} }
}
if (phones.length() > 0) { if (phones.length() > 0) {
phones.deleteCharAt(phones.length()-1); phones.deleteCharAt(phones.length()-1);
} }
......
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