[7569] | 1 | ## $Id: utils.py 16899 2022-03-22 12:46:49Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
[7822] | 18 | """Customize general helper utilities for Kofa. |
---|
[7569] | 19 | """ |
---|
[15427] | 20 | import string |
---|
[11913] | 21 | from copy import deepcopy |
---|
[8834] | 22 | from kofacustom.nigeria.utils.utils import NigeriaKofaUtils |
---|
[9989] | 23 | from waeup.fceokene.interfaces import MessageFactory as _ |
---|
[7569] | 24 | |
---|
[8834] | 25 | class CustomKofaUtils(NigeriaKofaUtils): |
---|
[7569] | 26 | """A collection of methods subject to customization. |
---|
| 27 | """ |
---|
[7845] | 28 | |
---|
[14590] | 29 | STUDY_MODES_DICT = { |
---|
| 30 | #'ume_ft': 'UME Full Time', |
---|
| 31 | 'ug_ft': 'Undergraduate Full Time', |
---|
| 32 | #'ug_pt': 'Undergraduate Part Time', |
---|
| 33 | #'dp_pt': 'Diploma Part Time', |
---|
| 34 | 'ct_ft': 'Certificate Full Time', |
---|
| 35 | #'dp_ft': 'Diploma Full Time', |
---|
[14936] | 36 | 'de_ft': 'Direct Entry Full Time', |
---|
| 37 | 'de_pt': 'Direct Entry Part Time', |
---|
[14590] | 38 | #'nd_ft': 'National Diploma Full Time', |
---|
| 39 | #'nd_pt': 'National Diploma Part Time', |
---|
| 40 | #'hnd_ft': 'Higher National Diploma Full Time', |
---|
| 41 | #'hnd_pt': 'Higher National Diploma Part Time', |
---|
| 42 | #'pg_ft': 'Postgraduate Full Time', |
---|
| 43 | #'pg_pt': 'Postgraduate Part Time', |
---|
| 44 | #'pgd_ft': 'Postgraduate Diploma Full Time', |
---|
| 45 | #'pgd_pt': 'Postgraduate Diploma Part Time', |
---|
| 46 | #'special_pg_pt': 'Special Postgraduate Part Time', |
---|
| 47 | 'nce_ft': 'NCE Full Time', |
---|
| 48 | #'nce_pt': 'NCE Part Time', |
---|
| 49 | #'ug_sw': 'Undergraduate Sandwich', |
---|
| 50 | 'nce_sw': 'NCE Sandwich', |
---|
| 51 | #'jm_ft': 'Joint Matriculation Full Time', |
---|
| 52 | #'ph_ft': 'Post Higher Education Full Time', |
---|
| 53 | #'transfer_pt': 'Transfer Part Time', |
---|
| 54 | #'transfer_ft': 'Transfer Full Time', |
---|
| 55 | #'ct_pt': 'Certificate Part Time', |
---|
| 56 | #'rmd_ft': 'Remedial with deficiencies', |
---|
| 57 | #'rm_ft': 'Remedial', |
---|
| 58 | 'transfer': 'Transfer', |
---|
[14812] | 59 | 'prence': 'Pre-NCE/Pre-Degree', |
---|
[14590] | 60 | #'prend': 'Pre-ND', |
---|
| 61 | #'pce': 'PCE', |
---|
| 62 | 'pd_ft': 'Professional Diploma in Education', |
---|
| 63 | #'found': 'Foundation', |
---|
| 64 | 'no': 'no application', |
---|
| 65 | } |
---|
| 66 | |
---|
[7845] | 67 | PREFERRED_LANGUAGES_DICT = { |
---|
| 68 | } |
---|
[9461] | 69 | |
---|
| 70 | APP_CATS_DICT = { |
---|
[10570] | 71 | 'basic': 'UTME, DE, PCE, PRENCE', |
---|
[9461] | 72 | 'no': 'No Application', |
---|
| 73 | 'sandwich': 'Sandwich', |
---|
| 74 | 'cest': 'Part-Time, Diploma, Certificate', |
---|
| 75 | 'bec': 'Bachelor of Education Certificate Programmes', |
---|
[14812] | 76 | 'pre': 'Pre-Degree Studies', |
---|
| 77 | 'prence': 'Pre-NCE/Pre-Degree Programmes', |
---|
[16868] | 78 | #'tpu': 'Teaching Practice Unit Courses' use basic instead!! |
---|
[9461] | 79 | } |
---|
[9989] | 80 | |
---|
[13614] | 81 | SPECIAL_HANDLING_DICT = { |
---|
| 82 | 'regular': 'Regular Hostel', |
---|
| 83 | 'blocked': 'Blocked Hostel', |
---|
| 84 | 'ugft': 'Undergraduate Fulltime Hostel' |
---|
| 85 | } |
---|
[11913] | 86 | |
---|
| 87 | PAYMENT_CATEGORIES = { |
---|
| 88 | 'schoolfee': 'School Fee', |
---|
[16461] | 89 | 'schoolfee_pde1': 'School Fee 1st instalment (new PDE students only)', |
---|
[16899] | 90 | 'schoolfee_third': 'NCE Third Semester Fee (6 courses)', |
---|
[11913] | 91 | 'clearance': 'Acceptance Fee', |
---|
| 92 | 'bed_allocation': 'Bed Allocation Fee', |
---|
| 93 | 'hostel_maintenance': 'Hostel Maintenance Fee', |
---|
| 94 | 'application': 'Application Fee', |
---|
[16899] | 95 | 'third_semester': 'NCE Third Semester Fee (additional courses)', |
---|
[11913] | 96 | } |
---|
| 97 | |
---|
[16899] | 98 | SELECTABLE_PAYMENT_CATEGORIES = { |
---|
| 99 | 'schoolfee': 'School Fee', |
---|
| 100 | 'schoolfee_pde1': 'School Fee 1st instalment (new PDE students only)', |
---|
| 101 | 'schoolfee_third': 'NCE Third Semester Fee (6 courses)', |
---|
| 102 | 'clearance': 'Acceptance Fee', |
---|
| 103 | 'bed_allocation': 'Bed Allocation Fee', |
---|
| 104 | 'hostel_maintenance': 'Hostel Maintenance Fee', |
---|
| 105 | 'application': 'Application Fee', |
---|
| 106 | #'third_semester': 'NCE Third Semester Fee (additional courses)', |
---|
| 107 | } |
---|
| 108 | |
---|
[13030] | 109 | DISABLE_PAYMENT_GROUP_DICT = { |
---|
| 110 | 'sf_all': 'School Fee - All Students', |
---|
| 111 | 'sf_nce1': 'School Fee - NCE I Fresh Students', |
---|
[16554] | 112 | 'cl_except_ug': 'Acceptance Fee - All Students except UG Full Time', |
---|
[13030] | 113 | } |
---|
| 114 | |
---|
[16899] | 115 | BALANCE_PAYMENT_CATEGORIES = { |
---|
| 116 | 'schoolfee': 'School Fee', |
---|
| 117 | 'third_semester': 'NCE Third Semester Fee (N2000 per additional course)', |
---|
| 118 | } |
---|
| 119 | |
---|
[15435] | 120 | def selectable_payment_categories(self, student): |
---|
[16899] | 121 | return self.SELECTABLE_PAYMENT_CATEGORIES |
---|
[11913] | 122 | |
---|
[13128] | 123 | VERDICTS_DICT = { |
---|
| 124 | '0': 'not yet', |
---|
| 125 | 'A': 'Successful student', |
---|
| 126 | 'B': 'Student with carryover courses', |
---|
| 127 | 'C': 'Student on probation', |
---|
| 128 | 'D': 'Withdrawn from the faculty', |
---|
| 129 | #'E': 'Student who were previously on probation', |
---|
| 130 | #'F': 'Medical case', |
---|
| 131 | 'G': 'Absent from examination', |
---|
| 132 | #'H': 'Withheld results', |
---|
| 133 | 'I': 'Expelled/rusticated/suspended student', |
---|
| 134 | 'J': 'Temporary withdrawn from the university', |
---|
| 135 | #'K': 'Unregistered student', |
---|
| 136 | 'L': 'Referred student', |
---|
| 137 | 'M': 'Reinstatement', |
---|
| 138 | #'N': 'Student on transfer', |
---|
| 139 | 'O': 'NCE-III repeater', |
---|
| 140 | #'Y': 'No previous verdict', |
---|
| 141 | #'X': 'New 300 level student (Uniben)', |
---|
| 142 | 'Z': 'Successful student (provisional)', |
---|
| 143 | 'A1': 'First Class', |
---|
| 144 | 'A2': 'Second Class Upper', |
---|
| 145 | 'A3': 'Second Class Lower', |
---|
| 146 | 'A4': 'Third Class', |
---|
| 147 | 'A5': 'Pass', |
---|
| 148 | 'A6': 'Distinction', |
---|
| 149 | 'A7': 'Credit', |
---|
| 150 | 'A8': 'Merit', |
---|
| 151 | 'OPDE': 'PDE repeater', |
---|
| 152 | } |
---|
| 153 | |
---|
[9989] | 154 | def getPaymentItem(self, payment): |
---|
| 155 | """Return payment item. |
---|
| 156 | |
---|
| 157 | Bed coordinates are only visible after payment. |
---|
| 158 | """ |
---|
| 159 | if 'maintenance' in payment.p_category and payment.p_state != 'paid': |
---|
| 160 | return _('(visible after successful payment)') |
---|
[15427] | 161 | return payment.p_item |
---|
| 162 | |
---|
| 163 | def fullname(self, firstname, lastname, middlename=None): |
---|
| 164 | """Construct fullname. |
---|
| 165 | """ |
---|
| 166 | try: |
---|
| 167 | lastname = lastname.upper() |
---|
| 168 | except AttributeError: |
---|
| 169 | pass |
---|
| 170 | # We remove single initial |
---|
| 171 | if firstname and len(firstname) == 1: |
---|
| 172 | firstname = '' |
---|
| 173 | if middlename and len(middlename) == 1: |
---|
| 174 | middlename = '' |
---|
| 175 | if lastname and len(lastname) == 1: |
---|
| 176 | lastname = '' |
---|
| 177 | # We construct givennames |
---|
| 178 | givennames = '' |
---|
| 179 | if middlename and firstname: |
---|
| 180 | givennames = '%s %s' % (firstname, middlename) |
---|
| 181 | elif firstname: |
---|
| 182 | givennames = firstname |
---|
| 183 | elif middlename: |
---|
| 184 | givennames = middlename |
---|
| 185 | givennames = string.capwords( |
---|
| 186 | givennames.replace('-', ' - ')).replace(' - ', '-') |
---|
| 187 | # We construct fullname |
---|
| 188 | fullname = '' |
---|
| 189 | if lastname and givennames: |
---|
| 190 | fullname = '%s %s' % (givennames, lastname) |
---|
| 191 | elif lastname: |
---|
| 192 | fullname = lastname |
---|
| 193 | elif givennames: |
---|
| 194 | fullname = givennames |
---|
| 195 | if '<' in fullname: |
---|
| 196 | return 'XXX' |
---|
| 197 | return fullname |
---|