Browse Source

撤销后日志没有BUG修复

anderx 2 years ago
parent
commit
6efae76081

+ 1 - 2
src/main/java/com/goafanti/expenseAccount/service/impl/ExpenseAccountServiceImpl.java

@@ -131,7 +131,7 @@ public class ExpenseAccountServiceImpl extends BaseMybatisDao<ExpenseAccountMapp
                 ea.setExamineName(examineName);
             }else if (i==2){
                 if (StringUtils.isBlank(dep.getManagerName())){
-                    throw new BusinessException("报销申请部门管理员不存在。");
+                    throw new BusinessException("报销申请部门[管理员]不存在。");
                 }
                     eae.setAuditor(dep.getManagerId());
                     eae.setAuditorname(dep.getManagerName());
@@ -782,7 +782,6 @@ public class ExpenseAccountServiceImpl extends BaseMybatisDao<ExpenseAccountMapp
             }
             //如果当前审核人已经审核,则跳过当前审核
             if (flag){
-                newEa.setProcessStatus(newEa.getProcessStatus()+1);
                 String str=String.format("重复审核人跳过[%s]。",EAProcessStatus.getDesc(newEa.getProcessStatus()));
                 Date date=new Date();
                 date.setTime(date.getTime()+1000l);