|
@@ -186,6 +186,12 @@ public class RepairApplicationFormServiceImpl extends BaseServiceImpl<RepairAppl
|
|
|
record.setRepairUserId(null);
|
|
|
record.setCheckUserId(SecurityUtils.getUserInfo().getUserId());
|
|
|
}
|
|
|
+ if(record.getSearchType() == 8){ // 待审核
|
|
|
+ statusList.add(RepairApplicationFormStatusEnum.WAIT_SUBMIT.getValue());
|
|
|
+ }
|
|
|
+ if(record.getSearchType() == 9){ // 审核中
|
|
|
+ statusList.add(RepairApplicationFormStatusEnum.NOT_ACCEPTANCE.getValue());
|
|
|
+ }
|
|
|
record.setStatusList(statusList);
|
|
|
}
|
|
|
// 排除超级用户
|