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)) {
?>
- echo "- ".i18n("Home Page").'
';
+ echo "- ".i18n("ORSF Home").'
';
+ echo "- ".i18n("Registration Home").'
';
echo "- ".i18n("Important Dates").'
';
echo $registrationconfirmationlink;
@@ -1445,5 +1446,102 @@ function projectcategories_load($year = false)
return $cats;
}
+// Converts the numeric value "$val" to an English text representation of it (e.g. "two thousand four").
+// If the "$monetize" flag is set to true, then it's formatted to be useable on printed cheques (e.g. "***** Two Thousand Four 00/100 *****".
+function wordify($val, $monetize = false){
+ $digits = array('zero', 'one', 'two', 'three', 'four', 'five', 'six', 'seven', 'eight', 'nine');
+ if($monetize){
+ $pennies = intval(($val - intval($val)) * 100);
+ $returnval = "and " . sprintf("%02d", $pennies) . "/100";
+ }else if($val != intval($val)){
+ $dec = $val - intval($val);
+ $returnval = 'point';
+ while($dec){
+ $dec *= 10;
+ $returnval .= " " . smallIntToText(intval($dec));
+ $dec -= intval($dec);
+ }
+ }
+ $val = intval($val);
+ $powerofthousand = array(
+ '', 'Thousand', 'Million', 'Billion', 'trillion', 'quadrillion'
+ );
+ $n = 0;
+ if(!$val){
+ $returnval = "Zero " . $returnval;
+ }else{
+ while($val > 0){
+ $sectionVal = $val % 1000;
+ if($sectionVal != 0){
+ $sectionText = smallIntToText($sectionVal);
+ if($powerofthousand[$n] != ''){
+ $returnval = $sectionText . " " . $powerofthousand[$n] . " " . $returnval;
+ }else{
+ $returnval = $sectionText . " " . $returnval;
+ }
+ }
+ $val = intval($val / 1000);
+ $n++;
+ }
+ }
+ if($monetize) $returnval = '***' . $returnval;
+ return $returnval;
+}
+
+// Converts a number between zero and one thousand to Canadian English text
+function smallIntToText($number){
+ $number %= 1000;
+ $rvals = array(
+ 0 => 'Zero',
+ 1 => 'One',
+ 2 => 'Two',
+ 3 => 'Three',
+ 4 => 'Four',
+ 5 => 'Five',
+ 6 => 'Six',
+ 7 => 'Seven',
+ 8 => 'Eight',
+ 9 => 'Nine',
+ 10 => 'Ten',
+ 11 => 'Eleven',
+ 12 => 'Twelve',
+ 13 => 'Thirteen',
+ 14 => 'Fourteen',
+ 15 => 'Fifteen',
+ 16 => 'Sixteen',
+ 17 => 'Seventeen',
+ 18 => 'Eighteen',
+ 19 => 'Nineteen',
+ 20 => 'Twenty',
+ 30 => 'Thirty',
+ 40 => 'Forty',
+ 50 => 'Fifty',
+ 60 => 'Sixty',
+ 70 => 'Seventy',
+ 80 => 'Eighty',
+ 90 => 'Ninety',
+ );
+ if(array_key_exists($number, $rvals)) return $rvals[$number];
+ $returnval = '';
+ if($number >= 100){
+ $hundred = intval($number / 100);
+ $returnval = $rvals[$hundred] . " Hundred";
+ $number -= 100 * $hundred;
+ }
+ if(array_key_exists($number, $rvals)){
+ if($number > 0) $returnval .= " " . $rvals[$number];
+ return $returnval;
+ }
+ if($number >= 10){
+ $ten = intval($number / 10);
+ if($returnval != '') $returnval .= ' ';
+ $returnval .= $rvals[10 * $ten];
+ $number -= 10 * $ten;
+ }
+ if($number > 0){
+ $returnval .= ' ' . $rvals[$number];
+ }
+ return $returnval;
+}
?>
diff --git a/db/db.code.version.txt b/db/db.code.version.txt
index c5356ba1..f07e2860 100644
--- a/db/db.code.version.txt
+++ b/db/db.code.version.txt
@@ -1 +1 @@
-174
+175
diff --git a/db/db.update.175.sql b/db/db.update.175.sql
new file mode 100644
index 00000000..d8446149
--- /dev/null
+++ b/db/db.update.175.sql
@@ -0,0 +1,39 @@
+INSERT INTO `config` (`var`, `val`, `category`, `type`, `type_values`, `ord`, `description`, `year`, `conferences_id`) VALUES
+('cheque_date_format', 'DDMMYYYY', 'Localization', 'enum', 'YYYYMMDD=YYYYMMDD|DDMMYYYY=DDMMYYYY|MMDDYYYY=MMDDYYYY', '220', 'Format for dates on printed cheques', '-1', NULL),
+('cheque_date_format', 'DDMMYYYY', 'Localization', 'enum', 'YYYYMMDD=YYYYMMDD|DDMMYYYY=DDMMYYYY|MMDDYYYY=MMDDYYYY', '220', 'Format for dates on printed cheques', '2012', NULL);
+
+
+INSERT INTO `reports` (`name`, `desc`, `creator`, `type`) VALUES
+(48, 'Cheques Divisional Award Winners', 'Cheques for Divisional Award Winners', 'Lightbox Technologies', 'student');
+
+INSERT INTO `reports_items` (`reports_id`, `type`, `ord`, `field`, `value`, `x`, `y`, `w`, `h`, `lines`, `face`, `fontname`, `fontstyle`, `fontsize`, `align`, `valign`, `on_overflow`) VALUES
+(LAST_INSERT_ID(), 'col', 0, 'namefl', '', 10, 12, 80, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 1, 'award_prize_cash_cheque', '', 80, 7, 20, 2, 1, '', '', '', 0, 'right vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 2, 'award_name', '', 4, 35, 67, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 3, 'award_prize_name', '', 8, 40, 70, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 4, 'award_prize_cash_cheque', '', 80, 40, 19, 2, 1, '', '', '', 0, 'right vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 5, 'current_date_for_cheques', '', 82, 0.3, 18, 2, 1, '', '', '', 0, 'center vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 6, 'award_name', '', 4, 72, 67, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 7, 'award_prize_name', '', 8, 77, 70, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 8, 'award_prize_cash_cheque', '', 80, 77, 19, 2, 1, '', '', '', 0, 'right vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 9, 'allnames', '', 8, 45, 70, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 10, 'allnames', '', 8, 82, 70, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 11, 'award_prize_cash_words', '', 10, 7, 69, 2, 1, '', '', '', 0, 'left vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 12, 'current_date_for_cheques', '', 78, 35, 21, 2, 1, '', '', '', 0, 'right vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 13, 'current_date_for_cheques', '', 78, 72, 21, 2, 1, '', '', '', 0, 'right vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 14, 'static_text', 'DATE', 74, 0.5, 8, 1.5, 1, '', '', '', 0, 'right vcenter', '', ''),
+(LAST_INSERT_ID(), 'col', 15, 'current_date_format_for_cheques', '', 82, 2.9, 18, 1.1, 1, '', '', '', 0, 'center vcenter', '', ''),
+(LAST_INSERT_ID(), 'distinct', 0, 'registrations_num', '', 0, 0, 0, 0, 1, '', '', '', 0, ' ', '', ''),
+(LAST_INSERT_ID(), 'option', 0, 'type', 'label', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 1, 'group_new_page', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 2, 'allow_multiline', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 3, 'fit_columns', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 4, 'label_box', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 5, 'field_box', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 6, 'label_fairname', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 7, 'label_logo', 'no', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 8, 'default_font_size', '10', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'option', 9, 'stock', 'fullpage', 0, 0, 0, 0, 0, '', '', '', 0, '', '', 'truncate'),
+(LAST_INSERT_ID(), 'filter', 0, 'award_type', 'divisional', 0, 0, 0, 0, 1, '', '', '', 0, ' ', '', ''),
+(LAST_INSERT_ID(), 'filter', 1, 'award_prize_cash', '0', 4, 0, 0, 0, 1, '', '', '', 0, ' ', '', '');
+