|
|
@@ -205,11 +205,11 @@ public class ReimburseApplyServiceImpl extends ServiceImpl<ReimburseApplyMapper,
|
|
|
@Override
|
|
|
public Result<Object> submitReview(String id) {
|
|
|
ReimburseApply apply = this.getById(id);
|
|
|
+ apply.setStatus("4");
|
|
|
+ this.updateById(apply);
|
|
|
if (!Check.isNull(apply.getLeaderId())) {
|
|
|
sendMsg(apply.getLeaderId(), "1", id, null);
|
|
|
}
|
|
|
- apply.setStatus("4");
|
|
|
- this.updateById(apply);
|
|
|
return Result.ok();
|
|
|
}
|
|
|
|