[10765] | 1 | ## $Id: utils.py 15691 2019-10-17 14:35:14Z 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 | ## |
---|
| 18 | """Customize general helper utilities for Kofa. |
---|
| 19 | """ |
---|
| 20 | from kofacustom.nigeria.utils.utils import NigeriaKofaUtils |
---|
| 21 | |
---|
| 22 | class CustomKofaUtils(NigeriaKofaUtils): |
---|
| 23 | """A collection of methods subject to customization. |
---|
| 24 | """ |
---|
| 25 | |
---|
[14720] | 26 | APP_CATS_DICT = { |
---|
| 27 | 'basic': 'Basic', |
---|
| 28 | 'ndft': 'National Diploma Full-Time Programmes', |
---|
| 29 | 'ndpt': 'National Diploma Part-Time Programmes', |
---|
| 30 | 'ndwe': 'National Diploma Weekend Programmes', |
---|
| 31 | 'hndft': 'Higher National Diploma Full-Time Programmes', |
---|
| 32 | 'hndpt': 'Higher National Diploma Part-Time Programmes', |
---|
| 33 | 'hndwe': 'Higher National Diploma Weekend Programmes', |
---|
| 34 | 'pgd': 'Postgraduate Diploma Programmes', |
---|
| 35 | 'rmd': 'Remedial Programmes', |
---|
| 36 | 'no': 'no application', |
---|
| 37 | } |
---|
| 38 | |
---|
| 39 | STUDY_MODES_DICT = { |
---|
[14921] | 40 | 'transfer': 'Transfer', |
---|
[14720] | 41 | 'ug_ft': 'Undergraduate Full Time', |
---|
| 42 | 'ug_pt': 'Undergraduate Part Time', |
---|
| 43 | 'nd_ft': 'National Diploma Full-Time', |
---|
| 44 | 'nd_pt': 'National Diploma Part-Time', |
---|
| 45 | 'nd_we': 'National Diploma Weekend', |
---|
| 46 | 'hnd_ft': 'Higher National Diploma Full-Time', |
---|
| 47 | 'hnd_pt': 'Higher National Diploma Part-Time', |
---|
| 48 | 'hnd_we': 'Higher National Diploma Weekend', |
---|
| 49 | 'pgd_ft': 'Postgraduate Diploma Full-Time', |
---|
| 50 | 'pgd_pt': 'Postgraduate Diploma Part-Time', |
---|
| 51 | 'prend': 'Pre-ND', |
---|
| 52 | 'rmd': 'Remedial', |
---|
[14859] | 53 | } |
---|
| 54 | |
---|
| 55 | PAYMENT_CATEGORIES = { |
---|
[15691] | 56 | 'clearance': 'Acceptance/Screening', |
---|
[14859] | 57 | 'schoolfee': 'School Fee', |
---|
[14937] | 58 | 'dep_sug':'NADESU/SA/SUG', # is not a special paynent |
---|
[14864] | 59 | 'carryover1': '1, 2 or 3 Carry-Over Courses', |
---|
| 60 | 'carryover4': '4 Carry-Over Courses', |
---|
| 61 | 'carryover5': '5 Carry-Over Courses', |
---|
| 62 | 'carryover6': '6 Carry-Over Courses', |
---|
| 63 | 'carryover7': '7 Carry-Over Courses', |
---|
| 64 | 'carryover8': '8 Carry-Over Courses', |
---|
| 65 | 'carryover9': '9 Carry-Over Courses', |
---|
| 66 | 'carryover10': '10 Carry-Over Courses', |
---|
[14868] | 67 | 'carryover11': '11 Carry-Over Courses', |
---|
| 68 | 'carryover12': '12 Carry-Over Courses', |
---|
[14869] | 69 | 'balance': 'Balance Payment', |
---|
[14859] | 70 | 'bed_allocation': 'Bed Allocation', |
---|
| 71 | 'hostel_maintenance': 'Hostel Maintenance', |
---|
| 72 | 'application': 'Application', |
---|
| 73 | 'certificate': 'ND Certificate', |
---|
| 74 | 'hnd_certificate': 'HND Certificate', |
---|
| 75 | 'pgd_certificate': 'PGD Certificate', |
---|
| 76 | 'state_result': 'ND Statement of Result', |
---|
| 77 | 'hnd_state_result': 'HND Statement of Result', |
---|
| 78 | 'pgd_state_result': 'PGD Statement of Result', |
---|
| 79 | 'transcript_local': 'ND Transcript (local)', |
---|
| 80 | 'hnd_transcript_local': 'HND Transcript (local)', |
---|
| 81 | 'pgd_transcript_local': 'PGD Transcript (local)', |
---|
| 82 | 'transcript_foreign': 'ND Transcript (foreign)', |
---|
| 83 | 'hnd_transcript_foreign': 'HND Transcript (foreign)', |
---|
| 84 | 'pgd_transcript_foreign': 'PGD Transcript (foreign)', |
---|
| 85 | 'ver_result': 'Verification of Result', |
---|
| 86 | 'change_course': 'Change of Course', |
---|
| 87 | 'change_inst': 'Change of Institute', |
---|
| 88 | 'jamb_reject': 'JAMB Rejection Form', |
---|
| 89 | 'cert_of_cert': 'Certification of Certificate', |
---|
| 90 | 'ref_let': 'Recommendation/Reference Letter', |
---|
| 91 | 'proc_cert': 'Processing of Certificate by Proxy', |
---|
| 92 | 'loss_idcard': 'Loss of ID Card (student)', |
---|
| 93 | 'staff_loss_idcard': 'Loss of ID Card (staff)', |
---|
| 94 | 'loss_examcard': 'Loss of Exam Card', |
---|
| 95 | 'loss_result': 'Loss of Result', |
---|
| 96 | 'loss_receipt': 'Loss of Receipt', |
---|
| 97 | 'loss_clearance': 'Loss of Clearance', |
---|
| 98 | 'conv_brochure': 'ND Convocation Brochure', |
---|
| 99 | 'hnd_conv_brochure': 'HND Convocation Brochure', |
---|
| 100 | 'pgd_conv_brochure': 'PGD Convocation Brochure', |
---|
| 101 | 'log_book': 'Log Book', |
---|
| 102 | 'jamb_regularization': 'Jamb Regularization', |
---|
| 103 | 'utme_registration': 'UTME Registration', |
---|
| 104 | 'utme_cbt': 'UTME CBT', |
---|
| 105 | 'nysc_id_card': 'NYSC ID Card', |
---|
| 106 | 'ijmb_result':'IJMB Result', |
---|
[14942] | 107 | 'gown': 'Gown Hire Fee', |
---|
[15021] | 108 | 'sports': 'Sports Clearance Levy', |
---|
| 109 | 'siwes': 'SIWES Fee', |
---|
[15022] | 110 | 'eed_1': 'EED 1 Fee', |
---|
| 111 | 'eed_2': 'EED 2 Fee', |
---|
[15067] | 112 | 'olevel_results_1': 'O Level Results Verification 1', |
---|
| 113 | 'olevel_results_2': 'O Level Results Verification 2', |
---|
[15263] | 114 | 'eng_1':'School of Engineering Dues I', |
---|
| 115 | 'eng_2':'School of Engineering Dues II', |
---|
[15255] | 116 | 'sbs_1':'SBS Pack I', |
---|
| 117 | 'sbs_2':'SBS Pack II', |
---|
| 118 | 'bfn':'BFN Pack', |
---|
| 119 | 'mkt':'MKT Pack', |
---|
| 120 | 'mcn':'MCN Pack', |
---|
| 121 | 'otm':'OTM Pack', |
---|
| 122 | 'acct':'ACCT Pack', |
---|
| 123 | 'bam':'BAM Pack', |
---|
| 124 | 'pom':'POM Pack', |
---|
| 125 | 'hrm':'HRM Pack', |
---|
[15571] | 126 | 'hndgrad':'HND Final Clearance Pack', |
---|
| 127 | 'ndgrad':'ND Final Clearance Pack', |
---|
[15348] | 128 | 'lsfp_penalty':'Late School Fee Payment Penalty', |
---|
[15571] | 129 | 'conv':'Convocation Pack', |
---|
[14859] | 130 | } |
---|
| 131 | |
---|
| 132 | SELECTABLE_PAYMENT_CATEGORIES = { |
---|
[15691] | 133 | 'clearance': 'Acceptance/Screening', |
---|
[14859] | 134 | 'schoolfee': 'School Fee', |
---|
[14937] | 135 | 'dep_sug':'NADESU/SA/SUG', |
---|
[14942] | 136 | 'gown': 'Gown Hire Fee', |
---|
[14863] | 137 | #'carryover1': 'One Carry-Over', |
---|
| 138 | #'carryover2': 'Two Carry-Overs', |
---|
| 139 | #'carryover3': 'Three Carry-Overs', |
---|
| 140 | #'carryover4': 'Four Carry-Overs', |
---|
[15220] | 141 | 'hostel_maintenance': 'Hostel Maintenance', |
---|
[14863] | 142 | #'certificate': 'ND Certificate', |
---|
| 143 | #'hnd_certificate': 'HND Certificate', |
---|
| 144 | #'pgd_certificate': 'PGD Certificate', |
---|
| 145 | #'state_result': 'ND Statement of Result', |
---|
| 146 | #'hnd_state_result': 'HND Statement of Result', |
---|
| 147 | #'pgd_state_result': 'PGD Statement of Result', |
---|
| 148 | #'transcript_local': 'ND Transcript (local)', |
---|
| 149 | #'hnd_transcript_local': 'HND Transcript (local)', |
---|
| 150 | #'pgd_transcript_local': 'PGD Transcript (local)', |
---|
| 151 | #'transcript_foreign': 'ND Transcript (foreign)', |
---|
| 152 | #'hnd_transcript_foreign': 'HND Transcript (foreign)', |
---|
| 153 | #'pgd_transcript_foreign': 'PGD Transcript (foreign)', |
---|
| 154 | #'ver_result': 'Verification of Result', |
---|
[14903] | 155 | 'change_course': 'Change of Course', |
---|
[14863] | 156 | #'change_inst': 'Change of Institute', |
---|
| 157 | #'jamb_reject': 'JAMB Rejection Form', |
---|
| 158 | #'cert_of_cert': 'Certification of Certificate', |
---|
| 159 | #'ref_let': 'Recommendation/Reference Letter', |
---|
| 160 | #'proc_cert': 'Processing of Certificate by Proxy', |
---|
| 161 | #'loss_idcard': 'Loss of ID Card (student)', |
---|
| 162 | #'staff_loss_idcard': 'Loss of ID Card (staff)', |
---|
| 163 | #'loss_examcard': 'Loss of Exam Card', |
---|
| 164 | #'loss_result': 'Loss of Result', |
---|
| 165 | #'loss_receipt': 'Loss of Receipt', |
---|
| 166 | #'loss_clearance': 'Loss of Clearance', |
---|
| 167 | #'conv_brochure': 'ND Convocation Brochure', |
---|
| 168 | #'hnd_conv_brochure': 'HND Convocation Brochure', |
---|
| 169 | #'pgd_conv_brochure': 'PGD Convocation Brochure', |
---|
| 170 | #'log_book': 'Log Book', |
---|
| 171 | #'jamb_regularization': 'Jamb Regularization', |
---|
| 172 | #'utme_registration': 'UTME Registration', |
---|
| 173 | #'utme_cbt': 'UTME CBT', |
---|
| 174 | #'nysc_id_card': 'NYSC ID Card', |
---|
| 175 | #'ijmb_result':'IJMB Result', |
---|
[15021] | 176 | 'sports': 'Sports Clearance Levy', |
---|
| 177 | 'siwes': 'SIWES Fee', |
---|
[15024] | 178 | 'eed_1': 'EED 1 Fee', |
---|
| 179 | 'eed_2': 'EED 2 Fee', |
---|
[15067] | 180 | 'olevel_results_1': 'O Level Results Verification 1', |
---|
| 181 | 'olevel_results_2': 'O Level Results Verification 2', |
---|
[15263] | 182 | 'eng_1':'School of Engineering Dues I', |
---|
| 183 | 'eng_2':'School of Engineering Dues II', |
---|
[15255] | 184 | 'sbs_1':'SBS Pack I', |
---|
| 185 | 'sbs_2':'SBS Pack II', |
---|
| 186 | 'bfn':'BFN Pack', |
---|
| 187 | 'mkt':'MKT Pack', |
---|
| 188 | 'mcn':'MCN Pack', |
---|
| 189 | 'otm':'OTM Pack', |
---|
| 190 | 'acct':'ACCT Pack', |
---|
| 191 | 'bam':'BAM Pack', |
---|
| 192 | 'pom':'POM Pack', |
---|
| 193 | 'hrm':'HRM Pack', |
---|
[15571] | 194 | 'hndgrad':'HND Final Clearance Pack', |
---|
| 195 | 'ndgrad':'ND Final Clearance Pack', |
---|
[15348] | 196 | 'lsfp_penalty':'Late School Fee Payment Penalty', |
---|
[15571] | 197 | 'conv':'Convocation Pack', |
---|
[14859] | 198 | } |
---|
| 199 | |
---|
[15440] | 200 | def selectable_payment_categories(self, student): |
---|
| 201 | return self.SELECTABLE_PAYMENT_CATEGORIES |
---|
| 202 | |
---|
[14859] | 203 | SPECIAL_APP_DICT = { |
---|
| 204 | 'certificate': 'ND Certificate', |
---|
| 205 | 'hnd_certificate': 'HND Certificate', |
---|
| 206 | 'pgd_certificate': 'PGD Certificate', |
---|
| 207 | 'state_result': 'ND Statement of Result', |
---|
| 208 | 'hnd_state_result': 'HND Statement of Result', |
---|
| 209 | 'pgd_state_result': 'PGD Statement of Result', |
---|
| 210 | 'transcript_local': 'ND Transcript (local)', |
---|
| 211 | 'hnd_transcript_local': 'HND Transcript (local)', |
---|
| 212 | 'pgd_transcript_local': 'PGD Transcript (local)', |
---|
| 213 | 'transcript_foreign': 'ND Transcript (foreign)', |
---|
| 214 | 'hnd_transcript_foreign': 'HND Transcript (foreign)', |
---|
| 215 | 'pgd_transcript_foreign': 'PGD Transcript (foreign)', |
---|
[14865] | 216 | 'ver_result': 'Verification of Result', |
---|
| 217 | 'change_course': 'Change of Course', |
---|
| 218 | 'change_inst': 'Change of Institute', |
---|
| 219 | 'jamb_reject': 'JAMB Rejection Form', |
---|
| 220 | 'cert_of_cert': 'Certification of Certificate', |
---|
| 221 | 'ref_let': 'Recommendation/Reference Letter', |
---|
| 222 | 'proc_cert': 'Processing of Certificate by Proxy', |
---|
[14859] | 223 | 'loss_idcard': 'Loss of ID Card (student)', |
---|
| 224 | 'staff_loss_idcard': 'Loss of ID Card (staff)', |
---|
[14865] | 225 | 'loss_examcard': 'Loss of Exam Card', |
---|
| 226 | 'loss_result': 'Loss of Result', |
---|
| 227 | 'loss_receipt': 'Loss of Receipt', |
---|
| 228 | 'loss_clearance': 'Loss of Clearance', |
---|
[14859] | 229 | 'conv_brochure': 'ND Convocation Brochure', |
---|
| 230 | 'hnd_conv_brochure': 'HND Convocation Brochure', |
---|
| 231 | 'pgd_conv_brochure': 'PGD Convocation Brochure', |
---|
| 232 | 'log_book': 'Log Book', |
---|
| 233 | 'jamb_regularization': 'Jamb Regularization', |
---|
| 234 | 'utme_registration': 'UTME Registration', |
---|
| 235 | 'utme_cbt': 'UTME CBT', |
---|
| 236 | 'nysc_id_card': 'NYSC ID Card', |
---|
| 237 | 'ijmb_result':'IJMB Result', |
---|
[14865] | 238 | 'carryover1': '01, 02 or 03 Carry-Over Courses', |
---|
| 239 | 'carryover4': '04 Carry-Over Courses', |
---|
| 240 | 'carryover5': '05 Carry-Over Courses', |
---|
| 241 | 'carryover6': '06 Carry-Over Courses', |
---|
| 242 | 'carryover7': '07 Carry-Over Courses', |
---|
| 243 | 'carryover8': '08 Carry-Over Courses', |
---|
| 244 | 'carryover9': '09 Carry-Over Courses', |
---|
[14864] | 245 | 'carryover10': '10 Carry-Over Courses', |
---|
[14868] | 246 | 'carryover11': '11 Carry-Over Courses', |
---|
| 247 | 'carryover12': '12 Carry-Over Courses', |
---|
[14869] | 248 | 'balance': 'Balance Payment', |
---|
[15571] | 249 | 'conv':'Convocation Pack', |
---|
[14720] | 250 | } |
---|