diff --git a/admin/reports_awards.inc.php b/admin/reports_awards.inc.php index 54e78f7c..4cde72c9 100644 --- a/admin/reports_awards.inc.php +++ b/admin/reports_awards.inc.php @@ -25,6 +25,10 @@ function report_awards_fr(&$report, $field, $text) { return i18n($text,array(),array(),"fr"); } +function report_cash_words(&$report, $field, $text) { + return wordify($text, true); +} + $report_awards_fields = array( 'name' => array( 'start_option_group' => 'Award Information', @@ -290,6 +294,15 @@ $report_awards_fields = array( 'table' => 'award_prizes.cash', 'components' => array('prizes')), + 'prize_cash_words' => array( + 'name' => 'Prize -- Cash Amount In Words', + 'header' => 'Cash', + 'width' => 0.5, + 'table' => 'award_prizes.cash', + 'components' => array('prizes'), + 'exec_function' => 'report_cash_words' + ), + 'prize_scholarship' => array( 'name' => 'Prize -- Scholarship Amount', 'header' => 'Scholarship', diff --git a/admin/reports_students.inc.php b/admin/reports_students.inc.php index b1cd0524..da0f3625 100644 --- a/admin/reports_students.inc.php +++ b/admin/reports_students.inc.php @@ -26,6 +26,33 @@ function report_students_i18n_fr(&$report, $field, $text) return i18n($text, array(), array(), 'fr'); } +function report_student_cash_words(&$report, $field, $text) { + return wordify($text, true); +} + +function report_student_cash_cheque(&$report, $field, $text) { + return sprintf("\$***%0.2f", $text); +} + +function report_student_get_date_today(&$report, $field, $text) { + return format_date(time()); +} + +function report_student_get_date_today_for_cheques(&$report, $field, $text) { + global $config; + $format = $config['cheque_date_format']; + $format = str_replace(array('YYYY', 'MM', 'DD'), array('Y', 'm', 'd'), $format); + if(!(strlen($format) == 3 && strstr('Y', $format) !== null && strstr('m', $format) !== null && strstr('d', $format) !== null)){ + $format = 'Ymd'; + } + return implode(' ', preg_split('//', date($format), -1)); +} + +function report_student_get_cheque_date_format(&$report, $field, $text){ + global $config; + return implode(' ', preg_split('//', $config['cheque_date_format'], -1)); +} + function reports_students_numstudents(&$report, $field, $text) { $year = $report['year']; @@ -576,6 +603,22 @@ $report_students_fields = array( 'table' => 'award_prizes.cash', 'components' => array('awards')), + 'award_prize_cash_cheque' => array( + 'name' => 'Award -- Prize Cash Amount for Cheques', + 'header' => 'Cash', + 'width' => 0.5, + 'table' => 'award_prizes.cash', + 'components' => array('awards'), + 'exec_function' => 'report_student_cash_cheque'), + + 'award_prize_cash_words' => array( + 'name' => 'Award -- Prize Cash Amount In Words', + 'header' => 'Cash', + 'width' => 0.5, + 'table' => 'award_prizes.cash', + 'components' => array('awards'), + 'exec_function' => 'report_student_cash_words'), + 'award_prize_scholarship' => array( 'name' => 'Award -- Prize Scholarship Amount', 'header' => 'Scholarship', @@ -882,7 +925,26 @@ $report_students_fields = array( 'total' => true, 'group_by' => array('students.tshirt')), + 'current_date' => array( + 'name' => 'Current Date', + 'header' => 'Date', + 'width' => 0.5, + 'table' => "CONCAT(' ')", + 'exec_function' => 'report_student_get_date_today'), + 'current_date_for_cheques' => array( + 'name' => 'Current Date for Cheques', + 'header' => 'Date', + 'width' => 0.5, + 'table' => "CONCAT(' ')", + 'exec_function' => 'report_student_get_date_today_for_cheques'), + + 'current_date_format_for_cheques' => array( + 'name' => 'Current Date Format for Cheques', + 'header' => 'Format', + 'width' => 0.5, + 'table' => "CONCAT(' ')", + 'exec_function' => 'report_student_get_cheque_date_format'), ); $report_students_fields = array_merge($report_students_fields,$regfeeitems); diff --git a/common.inc.php b/common.inc.php index 7d7a5338..0afda8fc 100644 --- a/common.inc.php +++ b/common.inc.php @@ -521,7 +521,8 @@ if(is_array($nav)) { ?>