* Copyright (C) 2005-2006 James Grant * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public * License as published by the Free Software Foundation, version 2. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, Inc., 59 Temple Place - Suite 330, * Boston, MA 02111-1307, USA. */ ?> 'committee_main.php', 'Administration' => 'admin/index.php')); } ?> prepare("SELECT * FROM projectcategories WHERE year=? ORDER BY id"); $q->execute([$year]); while ($r = $q->fetch(PDO::FETCH_OBJ)) $cats[$r->id] = $r->category; $q = $pdo->prepare("SELECT * FROM projectdivisions WHERE year=? ORDER BY id"); $q->execute([$year]); while ($r = $q->fetch(PDO::FETCH_OBJ)) $divs[$r->id] = $r->division; $ORDERBY = 'projects.projectcategories_id, projects.projectdivisions_id, projects.projectnumber'; $q = $pdo->prepare("SELECT registrations.id AS reg_id, registrations.num AS reg_num, projects.id as projectid, projects.title, projects.projectnumber, projects.projectcategories_id, projects.projectdivisions_id, judges_teams_id as res_team_id, avg(score) as score, avg(score + (SELECT 70-avg(score) \t FROM judges_teams_timeslots_projects_link \t WHERE judges_teams_id = res_team_id)) \t AS norm_score FROM registrations left outer join projects on projects.registrations_id=registrations.id left outer join judges_teams_timeslots_projects_link on projects.id=judges_teams_timeslots_projects_link.projects_id WHERE registrations.year=?" . getJudgingEligibilityCode() . " GROUP BY projectid ORDER BY $ORDERBY "); $q->execute([$year]); show_pdo_errors_if_any($pdo); if ($_GET['csv'] != 'yes') { echo "" . i18n('Generate CSV Report') . "\n"; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; echo ''; } else { echo "Project #\tTitle\tCategory\tDivision\tScore\tNormalized Scores\tJudge Name\tJudges Score\n"; } while ($r = $q->fetch(PDO::FETCH_OBJ)) { if ($_GET['csv'] == 'yes') { echo "$r->projectnumber \t ? \t ? \t ? \t ? \t ? "; $p = $pdo->prepare("SELECT judges_teams_timeslots_projects_link.judges_teams_id, score, judges_teams.num FROM judges_teams_timeslots_projects_link, judges_teams WHERE judges_teams_timeslots_projects_link.judges_teams_id = judges_teams.id AND projects_id = ? ORDER BY judges_teams_id"); $p->execute([$r->title, $cats[$r->projectcategories_id], $divs[$r->projectdivisions_id], $r->score, $r->norm_score, $r->projectid]); show_pdo_errors_if_any($pdo); while ($s = $p->fetch(PDO::FETCH_OBJ)) { $team = getJudgingTeam($s->judges_teams_id); $teamNames = array_map('teamMemberToName', $team['members']); echo "\t " . implode(', ', $teamNames) . " \t $s->score"; } echo "\n"; } else { echo ''; echo "\n"; echo "\n"; echo '\n"; echo '\n"; echo '\n"; echo '\n"; echo '\n"; echo "\n"; } } if ($_GET['csv'] != 'yes') { echo "
' . i18n('Proj Num') . '' . i18n('Project Title') . '' . i18n('Age Category') . '' . i18n('Division') . '' . i18n('Score') . '' . i18n('Normalized Score') . '' . i18n('Action') . '
$r->projectnumber$r->title' . i18n($cats[$r->projectcategories_id]) . "' . i18n($divs[$r->projectdivisions_id]) . "' . number_format($r->score, 2) . "' . number_format($r->norm_score, 2) . "'; if ($year == $config['FAIRYEAR']) { echo "projectid\">"; echo i18n('Edit Scores'); echo ''; } echo "
\n"; echo '
'; send_footer(); } ?>