1 | ## $Id: utils.py 15109 2018-08-16 12:13:42Z 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 copy import deepcopy |
---|
21 | from kofacustom.nigeria.utils.utils import NigeriaKofaUtils |
---|
22 | |
---|
23 | class CustomKofaUtils(NigeriaKofaUtils): |
---|
24 | """A collection of methods subject to customization. |
---|
25 | """ |
---|
26 | |
---|
27 | APP_CATS_DICT = { |
---|
28 | 'basic': 'Basic Application', |
---|
29 | 'no': 'no application', |
---|
30 | 'ft': 'Full Time Courses', |
---|
31 | 'pt': 'Part Time Courses', |
---|
32 | 'pre': 'Pre-Degree Studies', |
---|
33 | 'ct': 'Certificate Programmes', |
---|
34 | 'ndft': 'National Diploma Full-Time Programmes', |
---|
35 | 'ndpt': 'National Diploma Part-Time Programmes', |
---|
36 | 'ndwe': 'National Diploma Weekend Programmes', |
---|
37 | 'hndft': 'Higher National Diploma Full-Time Programmes', |
---|
38 | 'hndpt': 'Higher National Diploma Part-Time Programmes', |
---|
39 | 'hndwe': 'Higher National Diploma Weekend Programmes', |
---|
40 | |
---|
41 | } |
---|
42 | |
---|
43 | PAYMENT_CATEGORIES = { |
---|
44 | 'schoolfee': 'Tuition/Exams Fee', |
---|
45 | 'clearance': 'Acceptance Fee', |
---|
46 | 'bed_allocation': 'Accommodation Booking Fee', |
---|
47 | 'hostel_maintenance': 'Hostel Maintenance Fee', |
---|
48 | 'application': 'Application Fee', |
---|
49 | 'ict_entre': 'ICT and Entrepreneur Fee', |
---|
50 | 'logbook_combo': 'Logbook Combo Fee', |
---|
51 | 'siwess_combo': 'SIWESS Combo Fee', |
---|
52 | 'transcript': 'Transcript Fee', |
---|
53 | 'certificate': 'Certificate Fee', |
---|
54 | 'certificate_confirm': 'Certificate Confirmation Fee', |
---|
55 | 'late_registration': 'Late Course Registration Fee', |
---|
56 | 'final_clearance': 'Final Clearance Fee', |
---|
57 | 'union': 'Student Union Dues', |
---|
58 | } |
---|
59 | |
---|
60 | SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) |
---|
61 | |
---|
62 | BALANCE_PAYMENT_CATEGORIES = { |
---|
63 | 'schoolfee': 'Tuition/Exams Fee', |
---|
64 | 'ict_entre': 'ICT and Entrepreneur Fee', |
---|
65 | 'certificate_confirm': 'Certificate Confirmation Fee', |
---|
66 | 'final_clearance': 'Final Clearance Fee', |
---|
67 | } |
---|
68 | |
---|
69 | REPORTABLE_PAYMENT_CATEGORIES = { |
---|
70 | 'schoolfee': 'Tuition Exams Fee', |
---|
71 | 'clearance': 'Accept. Fee', |
---|
72 | 'hostel_maintenance': 'Hostel Maint. Fee', |
---|
73 | 'ict_entre': 'ICT Entrepr. Fee', |
---|
74 | 'logbook_combo': 'Logbook Combo Fee', |
---|
75 | 'siwess_combo': 'SIWESS Combo Fee', |
---|
76 | 'certificate': 'Cert. Fee', |
---|
77 | 'certificate_confirm': 'Cert. Confirm. Fee', |
---|
78 | 'late_registration': 'Late Course Registr. Fee', |
---|
79 | 'final_clearance': 'Final Clearance Fee', |
---|
80 | 'union': 'Student Union Dues', |
---|
81 | } |
---|
82 | |
---|
83 | STUDY_MODES_DICT = { |
---|
84 | 'ug_ft': 'Undergraduate Full Time (not used in EdoPoly)', |
---|
85 | 'nd_ft': 'National Diploma Full-Time', |
---|
86 | 'nd_pt': 'National Diploma Part-Time', |
---|
87 | 'nd_we': 'National Diploma Weekend', |
---|
88 | 'hnd_ft': 'Higher National Diploma Full-Time', |
---|
89 | 'hnd_pt': 'Higher National Diploma Part-Time', |
---|
90 | 'hnd_we': 'Higher National Diploma Weekend', |
---|
91 | 'ct': 'Certificate', |
---|
92 | 'pre': 'Pre-Degree', |
---|
93 | 'transfer': 'Transfer', |
---|
94 | 'no': 'no application', |
---|
95 | } |
---|
96 | |
---|
97 | MODE_GROUPS = { |
---|
98 | 'All': ('all',), |
---|
99 | 'Undergraduate Full-Time': ('hnd_ft', 'nd_ft'), |
---|
100 | 'Undergraduate Part-Time': ('hnd_pt', 'nd_pt'), |
---|
101 | #'Postgraduate Full-Time': ('pg_ft',), |
---|
102 | #'Postgraduate Part-Time': ('pg_pt',), |
---|
103 | } |
---|