Commit 25ccbb1d authored by hongguangwu's avatar hongguangwu

MVP1.7.0 优化

parent bf6910b5
...@@ -3067,6 +3067,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -3067,6 +3067,7 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
List<String> idCardList = new ArrayList<>(); List<String> idCardList = new ArrayList<>();
for (PreUploadEmpImportVo info : excelList) { for (PreUploadEmpImportVo info : excelList) {
errorCheck = new StringBuilder(); errorCheck = new StringBuilder();
if (info.getIsMain()) {
if (Common.isNotNull(info.getEmpName())) { if (Common.isNotNull(info.getEmpName())) {
if (idCardFlag == 0) { if (idCardFlag == 0) {
if (Common.isNotNull(info.getEmpIdcard())) { if (Common.isNotNull(info.getEmpIdcard())) {
...@@ -3126,6 +3127,19 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE ...@@ -3126,6 +3127,19 @@ public class TPreEmpMainServiceImpl extends ServiceImpl<TPreEmpMainMapper, TPreE
errorCheck.append("手机号码(家庭成员)未校验;"); errorCheck.append("手机号码(家庭成员)未校验;");
} }
} }
} else {
// 手机号码(家庭成员)
if (Common.isNotNull(info.getContractTel())) {
resultB = phoneMap.get(info.getContractTel());
if (resultB != null) {
if (Boolean.FALSE.equals(resultB)) {
errorCheck.append("手机号码(家庭成员)校验不通过;");
}
} else {
errorCheck.append("手机号码(家庭成员)未校验;");
}
}
}
if (errorCheck.length() > 0) { if (errorCheck.length() > 0) {
info.setErrorInfo(info.getErrorInfo() + "校验未通过:" + errorCheck); info.setErrorInfo(info.getErrorInfo() + "校验未通过:" + errorCheck);
errorList.add(info); errorList.add(info);
......
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