source: main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/utils/utils.py @ 17661

Last change on this file since 17661 was 17661, checked in by Henrik Bettermann, 9 months ago

Further customizations for the CDL portal.

  • Property svn:keywords set to Id
File size: 12.4 KB
Line 
1## $Id: utils.py 17661 2024-01-08 17:02:40Z 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
21import grok
22from copy import deepcopy
23from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
24
25class CustomKofaUtils(NigeriaKofaUtils):
26    """A collection of methods subject to customization.
27    """
28
29    PAYMENT_CATEGORIES = {
30        'schoolfee': 'Tuition Plus (total amount)',
31        'schoolfee40': 'Tuition Plus (40% - 1st instalment)',
32        'secondinstal': 'Tuition Plus (60% - 2nd instalment)',
33        'clearance': 'Acceptance Fee',
34        'grad_clearance': 'Clearance Fee',
35        'registration': 'Registration Fee',
36        #'bed_allocation': 'Bed Allocation Fee',
37        #'hostel_maintenance': 'Accommodation',
38        #'transfer': 'Transfer Fee',
39        #'gown': 'Gown Hire Fee',
40        'application': 'Application Fee',
41        'pg_application': 'PG Application Fee',
42        'app_balance': 'Application Fee Balance',
43        'transcript': 'Transcript Fee',
44        'transcript_local': 'Transcript Fee Local',
45        'transcript_overseas': 'Transcript Fee Oversea',
46        'late_registration': 'Late Registration Fee',
47        'science': 'Science Bench Fee',
48        'clinical': 'Clinical Fee (Medical Students)',
49        'develop': 'Development Fee',
50        'municipal_fresh': 'Municipal Fee (Fresh Students)',
51        'municipal_returning': 'Municipal Fee (Returning Students)',
52        'alumni': 'Alumni Fee',
53        'conv': 'Convocation Fee',
54        'matric': 'Matriculation Fee',
55        'waecneco': 'WAEC/NECO Verification',
56        'jambver': 'JAMB Verification',
57        'book': 'Book Deposit',
58        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
59        'pharmlab': 'Pharmacy Lab Support Fee',
60        'lo_ident': 'Letter of Identification Fee',
61        'change_course': 'Change of Course Fee',
62        'make_up': 'Make-up Fee',
63        'iuits': 'IUITS Fee',
64        'fine': 'Fine',
65        'combi': 'Combi Payment',
66        'resit1': '1 Make-Up Examination Course',
67        'resit2': '2 Make-Up Examination Courses',
68        'resit3': '3 Make-Up Examination Courses',
69        'resit4': '4 Make-Up Examination Courses',
70        'resit5': '5 Make-Up Examination Courses',
71        'resit6': '6 Make-Up Examination Courses',
72        'resit7': '7 Make-Up Examination Courses',
73        'resit8': '8 Make-Up Examination Courses',
74        'resit9': '9 Make-Up Examination Courses',
75        'makeup_admin': 'Make-Up Registration Fee',
76        'id_card': 'Student ID Card',
77        'required_combi': 'Required Combi Payment',
78        'pg_other': 'PG Other Charges',
79        'jupeb_form':'JUPEB Form Fee',
80        'jupeb_acc':'JUPEB Acceptance Fee',
81        'jupeb_reg':'JUPEB Administrative Fee',
82        'jupeb_sci':'JUPEB Tuition (Science)',
83        'jupeb_arts':'JUPEB Tuition (Arts)',
84        'jupeb_hostel':'JUPEB Accommodation (optional)',
85        'brought_fwd': 'Balance Brought Forward',
86        'health_insurance': 'Student Health Insurance',
87        # CDL Portal Fees only
88        'medical':'Medical Services',
89        'library':'Library',
90        'ict':'ICT Fees',
91        'orientation':'Orientation Fee',
92        'examination':'Examination Fee',
93        'cdlcourse1': ' 1 Course',
94        'cdlcourse2': ' 2 Courses',
95        'cdlcourse3': ' 3 Courses',
96        'cdlcourse4': ' 4 Courses',
97        'cdlcourse5': ' 5 Courses',
98        'cdlcourse6': ' 6 Courses',
99        'cdlcourse7': ' 7 Courses',
100        'cdlcourse8': ' 8 Courses',
101        'cdlcourse9': ' 9 Courses',
102        'cdlcourse10': '10 Courses',
103        'cdlcourse11': '11 Courses',
104        'cdlcourse12': '12 Courses',
105        'cdlcourse13': '13 Courses',
106        'cdlcourse14': '14 Courses',
107        'cdlcourse15': '15 Courses',
108        }
109
110    SELECTABLE_PAYMENT_CATEGORIES = {
111        'schoolfee': 'Tuition Plus (total amount)',
112        'schoolfee40': 'Tuition Plus (40% - 1st instalment)',
113        'secondinstal': 'Tuition Plus (60% - 2nd instalment)',
114        'registration': 'Registration Fee',
115        'clearance': 'Acceptance Fee',
116        'grad_clearance': 'Clearance Fee',
117        #'bed_allocation': 'Bed Allocation Fee',
118        #'hostel_maintenance': 'Accommodation',
119        #'transfer': 'Transfer Fee',
120        #'gown': 'Gown Hire Fee',
121        'application': 'Application Fee',
122        'pg_application': 'PG Application Fee',
123        #'app_balance': 'Application Fee Balance',
124        'transcript_local': 'Transcript Fee (Local Students)',
125        'transcript_overseas': 'Transcript Fee (Oversea Students)',
126        'late_registration': 'Late Registration Fee',
127        'science': 'Science Bench Fee',
128        'clinical': 'Clinical Fee (Medical Students)',
129        'develop': 'Development Fee',
130        'municipal_fresh': 'Municipal Fee (Fresh Students)',
131        'municipal_returning': 'Municipal Fee (Returning Students)',
132        'alumni': 'Alumni Fee',
133        'conv': 'Convocation Fee',
134        'matric': 'Matriculation Fee',
135        'waecneco': 'WAEC/NECO Verification',
136        'jambver': 'JAMB Verification',
137        'book': 'Book Deposit',
138        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
139        'pharmlab': 'Pharmacy Lab Support Fee',
140        'lo_ident': 'Letter of Identification Fee',
141        'change_course': 'Change of Course Fee',
142        #'make_up': 'Make-up Fee',
143        'iuits': 'IUITS Fee',
144        'fine': 'Fine',
145        'combi': 'Combi Payment',
146        #'resit1': '1 Make-Up Examination Course',
147        #'resit2': '2 Make-Up Examination Courses',
148        #'resit3': '3 Make-Up Examination Courses',
149        #'resit4': '4 Make-Up Examination Courses',
150        #'resit5': '5 Make-Up Examination Courses',
151        #'resit6': '6 Make-Up Examination Courses',
152        #'resit7': '7 Make-Up Examination Courses',
153        #'resit8': '8 Make-Up Examination Courses',
154        #'resit9': '9 Make-Up Examination Courses',
155        'makeup_admin': 'Make-Up Registration Fee',
156        'id_card': 'Student ID Card',
157        'required_combi': 'Required Combi Payment',
158        'pg_other': 'PG Other Charges',
159        #'jupeb_form':'JUPEB Form Fee',
160        #'jupeb_acc':'JUPEB Acceptance Fee',
161        #'jupeb_reg':'JUPEB Administrative Fee',
162        'jupeb_sci':'JUPEB Tuition (Science)',
163        'jupeb_arts':'JUPEB Tuition (Arts)',
164        'jupeb_hostel':'JUPEB Accommodation (optional)',
165        'health_insurance': 'Student Health Insurance',
166        }
167
168    CDLPORTAL_PAYMENT_CATEGORIES = {
169        'clearance': 'Acceptance Fee',
170        'id_card': 'Student ID Card',
171        'waecneco': 'WAEC/NECO Verification',
172        # CDL Portal fees only
173        'medical':'Medical Services',
174        'library':'Library',
175        'ict':'ICT Fees',
176        'orientation':'Orientation Fee',
177        'examination':'Examination Fee',
178        'cdlcourse1': ' 1 Course',
179        'cdlcourse2': ' 2 Courses',
180        'cdlcourse3': ' 3 Courses',
181        'cdlcourse4': ' 4 Courses',
182        'cdlcourse5': ' 5 Courses',
183        'cdlcourse6': ' 6 Courses',
184        'cdlcourse7': ' 7 Courses',
185        'cdlcourse8': ' 8 Courses',
186        'cdlcourse9': ' 9 Courses',
187        'cdlcourse10': '10 Courses',
188        'cdlcourse11': '11 Courses',
189        'cdlcourse12': '12 Courses',
190        'cdlcourse13': '13 Courses',
191        'cdlcourse14': '14 Courses',
192        'cdlcourse15': '15 Courses',
193        }
194
195    def selectable_payment_categories(self, student):
196        if grok.getSite().__name__ == 'iuokada-cdl':
197            spc = deepcopy(self.CDLPORTAL_PAYMENT_CATEGORIES)
198            return spc
199        spc = deepcopy(self.SELECTABLE_PAYMENT_CATEGORIES)
200        if student.depcode == 'BMS':
201            del spc['schoolfee40']
202            del spc['secondinstal']
203        return spc
204
205    PREVIOUS_PAYMENT_CATEGORIES = {
206        'schoolfee': 'Tuition, Accommodation, Adm. Charges',
207        'registration': 'Registration Fee',
208        'clearance': 'Acceptance Fee',
209        'grad_clearance': 'Clearance Fee',
210        'application': 'Application Fee',
211        'late_registration': 'Late Registration Fee',
212        'science': 'Science Bench Fee',
213        'clinical': 'Clinical Fee (Medical Students)',
214        'develop': 'Development Fee',
215        'municipal_fresh': 'Municipal Fee (Fresh Students)',
216        'municipal_returning': 'Municipal Fee (Returning Students)',
217        'alumni': 'Alumni Fee',
218        'conv': 'Convocation Fee',
219        'matric': 'Matriculation Fee',
220        'waecneco': 'WAEC/NECO Verification',
221        'jambver': 'JAMB Verification',
222        'book': 'Book Deposit',
223        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
224        'pharmlab': 'Pharmacy Lab Support Fee',
225        'lo_ident': 'Letter of Identification Fee',
226        'change_course': 'Change of Course Fee',
227        'make_up': 'Make-up Fee',
228        'iuits': 'IUITS Fee',
229        'fine': 'Fine',
230        'id_card': 'Student ID Card',
231        'required_combi': 'Required Combi Payment',
232        'pg_other': 'PG Other Charges',
233        #'jupeb_form':'JUPEB Form Fee',
234        #'jupeb_acc':'JUPEB Acceptance Fee',
235        #'jupeb_reg':'JUPEB Administrative Fee',
236        'jupeb_sci':'JUPEB Tuition (Science)',
237        'jupeb_arts':'JUPEB Tuition (Arts)',
238        'jupeb_hostel':'JUPEB Accommodation (optional)',
239        'health_insurance': 'Student Health Insurance',
240        }
241
242    COMBI_PAYMENT_CATEGORIES = {
243        'registration': 'Registration Fee',
244        'grad_clearance': 'Clearance Fee',
245        'late_registration': 'Late Registration Fee',
246        'science': 'Science Bench Fee',
247        'clinical': 'Clinical Fee (Medical Students)',
248        'develop': 'Development Fee',
249        'municipal_fresh': 'Municipal Fee (Fresh Students)',
250        'municipal_returning': 'Municipal Fee (Returning Students)',
251        'alumni': 'Alumni Fee',
252        'conv': 'Convocation Fee',
253        'matric': 'Matriculation Fee',
254        'waecneco': 'WAEC/NECO Verification',
255        'jambver': 'JAMB Verification',
256        'book': 'Book Deposit',
257        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
258        'pharmlab': 'Pharmacy Lab Support Fee',
259        'lo_ident': 'Letter of Identification Fee',
260        'change_course': 'Change of Course Fee',
261        'make_up': 'Make-up Fee',
262        'iuits': 'IUITS Fee',
263        'fine': 'Fine',
264        'id_card': 'Student ID Card',
265        'pg_other': 'PG Other Charges',
266        #'jupeb_form':'JUPEB Form Fee',
267        #'jupeb_acc':'JUPEB Acceptance Fee',
268        #'jupeb_reg':'JUPEB Administrative Fee',
269        'jupeb_sci':'JUPEB Tuition (Science)',
270        'jupeb_arts':'JUPEB Tuition (Arts)',
271        'jupeb_hostel':'JUPEB Accommodation (optional)',
272        'health_insurance': 'Student Health Insurance',
273        }
274
275    BALANCE_PAYMENT_CATEGORIES = {
276        'schoolfee': 'Tuition, Accommodation, Adm. Charges',
277        }
278
279    PAYMENT_OPTIONS = {
280        'first': 'First Bank Debit Card',
281        'access': 'Access Bank Debit Card',
282        'zenith': 'Zenith Bank Debit Card',
283        'other': 'Other Bank Debit Card',
284        }
285
286    APP_CATS_DICT = {
287        'basic': 'UAS, PUTME, PUDE, PCE, PRENCE',
288        'no': 'No Application',
289        'pg': 'Postgraduate Programmes',
290        'pg2': 'Postgraduate Programmes 2',
291        'pgphd': 'Postgraduate PhD/MPhil',
292        'pre': 'Pre-Degree Studies',
293        'pt': 'Part-Time Degree Programmes',
294        'ut': 'Undergraduate Programmes',
295        'conv': 'HND to BSc Conversion',
296        'odl': 'Open & Distant Learning',
297        }
298
299    STUDY_MODES_DICT = {
300        'ug_ft': 'Undergraduate Full Time',
301        'ug_pt': 'Undergraduate Part Time',
302        'pg_ft': 'Postgraduate Full Time',
303        'pg_pt': 'Postgraduate Part Time',
304        'pgphd': 'Postgraduate PhD/MPhil',
305        'odl': 'Open & Distant Learning',
306        'found': 'Foundation',
307        'no': 'no application',
308        }
309
310    #: Maximum size in Bytes of passport images in the applicants and
311    #: students section
312    MAX_PASSPORT_SIZE = 250 * 1024
Note: See TracBrowser for help on using the repository browser.