From bf3485c24a228b7a5ac81eb89966326e147578a7 Mon Sep 17 00:00:00 2001 From: dave Date: Fri, 6 Nov 2009 08:57:13 +0000 Subject: [PATCH] - Add an advanced options tab to the report generator - Add an advanced option: Include Incompelete Registrations - Ignores the registrations.status and just includes everyone. Downside: registrations must have a division and category selected because the mysql query matches on cat.year and div.year too. --- admin/reports.inc.php | 1 + admin/reports_gen.php | 21 +++++++++++++++++++++ admin/reports_students.inc.php | 8 ++++++-- 3 files changed, 28 insertions(+), 2 deletions(-) diff --git a/admin/reports.inc.php b/admin/reports.inc.php index f99f1d84..d7fec546 100644 --- a/admin/reports.inc.php +++ b/admin/reports.inc.php @@ -701,6 +701,7 @@ foreach($report_stock as $n=>$v) { $q = "SELECT $sel $q $filter_query $group_query ORDER BY $order"; $r = mysql_query($q); +// print_r($report); // print_r($report['filter']); // echo "$q"; diff --git a/admin/reports_gen.php b/admin/reports_gen.php index d6a689c3..c6cbd7c5 100644 --- a/admin/reports_gen.php +++ b/admin/reports_gen.php @@ -32,6 +32,7 @@ $type = stripslashes($_GET['type']); $stock = stripslashes($_GET['stock']); $year = intval($_GET['year']); + $include_incomplete_registrations = ($_GET['include_incomplete_registrations'] == 'yes') ? 'yes' : ''; $show_options = array_key_exists('show_options', $_GET); if($year < 1000) $year = $config['FAIRYEAR']; @@ -57,7 +58,12 @@ switch($_GET['action']) { case 'dialog_gen': ?>