zhaoxian 3 лет назад
Родитель
Сommit
b53d309edc

+ 2 - 2
jeecg-boot-module-system/src/main/java/cn/com/ctop/reimburse/mondule/service/impl/ReimburseApplyServiceImpl.java

@@ -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();
     }