lrf 3 months ago
parent
commit
37137d8271
1 changed files with 1 additions and 3 deletions
  1. 1 3
      src/controller/match/matchExt.controller.ts

+ 1 - 3
src/controller/match/matchExt.controller.ts

@@ -476,14 +476,12 @@ export class MatchExtController implements BaseController {
   async step5NameList(@Param('match_id') match_id: string, @Query() query: object) {
     /**
      * 检查内容:
-     *  赛事拓展表:
-     *    ext.status = "5"
      * 组织内容:
      *  赛事报名表:
      *    reg.ext_status:'5'
      *    reg.final_confirm =>'0'
      */
-    await this.service.checkMatchExtStatus(match_id, '5');
+    // await this.service.checkMatchExtStatus(match_id, '5');
     // 决赛名单,根据顺序升序
     const final_confirm = get(query, 'final_confirm')
     const { data: list } = await this.matchRegService.query({ match_id, ext_status: '5', final_confirm }, { order: { final_order_no: 'ASC' } });