[sport]folk系列加入跳繩錦標賽名次取數機制

跳繩錦標賽改變名次取數機制
第一名1位,第2名2位,第3名3位,同次數並排,不往後推擠名次,並取報名人數的5成,扣除前3名的名額為優勝。
因應方式:將原本main_score的名次(ord_id)改為序號,績分(ord_score)改為名次

function.php中的get_main_score函式加入$rope參數。get_main_score($group_id , $item_id , $detail , $just_one = 0 ,$only_one = 0,$rope = 0)
 

if($rope){  //跳繩錦標賽用ord_score當名次
    $row['eng_ord_id'] = $english_str[$row['ord_score']] ;
    $row['ord_id'] = chinese_str($row['ord_score']) ;
}else{
    $row['eng_ord_id'] = $english_str[$row['ord_id']] ;
    $row['ord_id'] = chinese_str($row['ord_id']) ;              
}

 

admin\adm_print_get.php中加入rope專用的templates

本篇發表於 程式設計。將永久鏈結加入書籤。