Commit ee925cd0 authored by huyuchen's avatar huyuchen

huych-入职登记提交

parent b8aff9a5
...@@ -388,7 +388,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -388,7 +388,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
@Override @Override
public R batchSendMessage(List<SendMessageUpdateVo> voList,String type) { public R batchSendMessage(List<SendMessageUpdateVo> voList,String type) {
//获取短信待发放和信息待填写的数据 //获取短信待发放和信息待填写的数据
List<String> errorList = new ArrayList<>();
if (CommonConstants.ONE_STRING.equals(type)) { if (CommonConstants.ONE_STRING.equals(type)) {
for(SendMessageUpdateVo updateVo:voList) { for(SendMessageUpdateVo updateVo:voList) {
RegistParamVo paramVo = new RegistParamVo(); RegistParamVo paramVo = new RegistParamVo();
...@@ -428,6 +428,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -428,6 +428,7 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} else { } else {
smsEmployee.setMessage("短信发送失败"); smsEmployee.setMessage("短信发送失败");
employeeService.updateById(smsEmployee); employeeService.updateById(smsEmployee);
errorList.add("短信发送失败");
} }
} }
} }
...@@ -476,10 +477,14 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi ...@@ -476,10 +477,14 @@ public class EmployeeRegistrationPreServiceImpl extends ServiceImpl<EmployeeRegi
} else { } else {
smsEmployee.setMessage("短信发送失败"); smsEmployee.setMessage("短信发送失败");
employeeService.updateById(smsEmployee); employeeService.updateById(smsEmployee);
errorList.add("短信发送失败");
} }
} }
} }
} }
if (!errorList.isEmpty() && errorList.stream().allMatch(e->e.equals("短信发送失败"))) {
return R.ok("短信发送失败");
}
return R.ok("短信发送成功"); return R.ok("短信发送成功");
} }
......
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