Commit ee925cd0 authored by huyuchen's avatar huyuchen

huych-入职登记提交

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