|
@@ -147,7 +147,7 @@ public class ReimburseApplyServiceImpl extends ServiceImpl<ReimburseApplyMapper,
|
|
|
//获取下次审核人信息
|
|
|
sender = getLeader(loginId);
|
|
|
if (Check.isNull(sender)) {
|
|
|
- return Result.error("编辑失败,userId:" + loginId + ",未查询到下一级的审核人员,请联系管理员");
|
|
|
+ return Result.error("修改失败,userId:" + loginId + ",未查询到下一级的审核人员,请联系管理员");
|
|
|
}
|
|
|
apply.setLeaderId(sender);
|
|
|
apply.setStatus("1");
|
|
@@ -161,7 +161,7 @@ public class ReimburseApplyServiceImpl extends ServiceImpl<ReimburseApplyMapper,
|
|
|
ReimburseApply entity = this.getById(apply.getId());
|
|
|
//获取下次审核人信息
|
|
|
String leader = getLeader(entity.getLeaderId());
|
|
|
- if (Check.isNull(sender)) {
|
|
|
+ if (Check.isNull(leader)) {
|
|
|
return Result.error("编辑失败,userId:" + entity.getLeaderId() + ",未查询到下一级的审核人员,请联系管理员");
|
|
|
}
|
|
|
//审核人 操作流程:↓↓↓
|