Commit 89abc956 authored by hongguangwu's avatar hongguangwu

单个编辑,手机号校验

parent c5dc81e6
...@@ -162,6 +162,38 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T ...@@ -162,6 +162,38 @@ public class TEmployeeInfoServiceImpl extends ServiceImpl<TEmployeeInfoMapper, T
return R.failed("根据id未找到档案!" + employeeInfo.getId()); return R.failed("根据id未找到档案!" + employeeInfo.getId());
} }
// 校验手机号:
if (Common.isEmpty(employeeInfo.getEmpPhone())) {
return R.failed("手机号必填!");
} else {
TEmployeeInfo check = new TEmployeeInfo();
check.setDeleteFlag(CommonConstants.STATUS_NORMAL);
check.setEmpPhone(employeeInfo.getEmpPhone());
List<TEmployeeInfo> list = baseMapper.getList(check);
if (list != null && !list.isEmpty()) {
for (TEmployeeInfo e : list) {
if (!e.getEmpIdcard().equals(employeeInfo.getEmpIdcard())) {
return R.failed(MsgUtils.getMessage(ErrorCodes.ARCHIVES_IMPORT_EMP_PHONE_EXIST_ERROR, employeeInfo.getEmpIdcard()));
}
}
}
// 调用校验服务-校验手机号
TCheckMobile checkMobile = new TCheckMobile();
checkMobile.setMobile(employeeInfo.getEmpPhone());
R<TCheckMobile> a = HttpDaprUtil.invokeMethodPost(daprCheckProperties.getAppUrl(), daprCheckProperties.getAppId()
, "/tcheckmobile/inner/checkOneMobile", checkMobile, TCheckMobile.class, SecurityConstants.FROM_IN);
if (a != null && a.getData() != null) {
checkMobile = a.getData();
if (checkMobile != null && Common.isNotNull(checkMobile.getStatus())) {
if (!CommonConstants.ONE_STRING.equals(checkMobile.getStatus())) {
return R.failed(checkMobile.getMessage());
}
} else {
return R.failed("校验服务错误,请联系管理员!");
}
}
}
employeeInfo.setUpdateBy(user.getId()); employeeInfo.setUpdateBy(user.getId());
employeeInfo.setUpdateTime(LocalDateTime.now()); employeeInfo.setUpdateTime(LocalDateTime.now());
......
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