1 | ## $Id: utils.py 14664 2017-04-05 04:41:10Z 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 | |
---|
26 | SYSTEM_MAX_LOAD = { |
---|
27 | 'swap-mem': None, |
---|
28 | 'virt-mem': 80.0, |
---|
29 | 'cpu-load': 100.0, |
---|
30 | } |
---|
31 | |
---|
32 | PREFERRED_LANGUAGES_DICT = { |
---|
33 | } |
---|
34 | |
---|
35 | APP_CATS_DICT = { |
---|
36 | 'basic': 'Basic', |
---|
37 | 'ndft': 'National Diploma Full-Time Programmes', |
---|
38 | 'ndpt': 'National Diploma Part-Time Programmes', |
---|
39 | 'ndwe': 'National Diploma Weekend Programmes', |
---|
40 | 'hndft': 'Higher National Diploma Full-Time Programmes', |
---|
41 | 'hndpt': 'Higher National Diploma Part-Time Programmes', |
---|
42 | 'hndwe': 'Higher National Diploma Weekend Programmes', |
---|
43 | 'pgd': 'Postgraduate Diploma Programmes', |
---|
44 | 'rmd': 'Remedial Programmes', |
---|
45 | 'no': 'no application', |
---|
46 | } |
---|
47 | |
---|
48 | STUDY_MODES_DICT = { |
---|
49 | 'nd_ft': 'National Diploma Full-Time', |
---|
50 | 'nd_pt': 'National Diploma Part-Time', |
---|
51 | 'nd_we': 'National Diploma Weekend', |
---|
52 | 'hnd_ft': 'Higher National Diploma Full-Time', |
---|
53 | 'hnd_pt': 'Higher National Diploma Part-Time', |
---|
54 | 'hnd_we': 'Higher National Diploma Weekend', |
---|
55 | 'pgd_ft': 'Postgraduate Diploma Full-Time', |
---|
56 | 'pgd_pt': 'Postgraduate Diploma Part-Time', |
---|
57 | 'prend': 'Pre-ND', |
---|
58 | 'rmd': 'Remedial', |
---|
59 | } |
---|
60 | |
---|
61 | PAYMENT_CATEGORIES = { |
---|
62 | 'clearance': 'Acceptance', |
---|
63 | 'schoolfee': 'School Fee', |
---|
64 | 'carryover1': 'One Carry-Over', |
---|
65 | 'carryover2': 'Two Carry-Overs', |
---|
66 | 'carryover3': 'Three Carry-Overs', |
---|
67 | 'bed_allocation': 'Bed Allocation', |
---|
68 | 'hostel_maintenance': 'Hostel Maintenance', |
---|
69 | 'application': 'Application', |
---|
70 | 'certificate': 'ND Certificate', |
---|
71 | 'hnd_certificate': 'HND Certificate', |
---|
72 | 'pgd_certificate': 'PGD Certificate', |
---|
73 | 'state_result': 'ND Statement of Result', |
---|
74 | 'hnd_state_result': 'HND Statement of Result', |
---|
75 | 'pgd_state_result': 'PGD Statement of Result', |
---|
76 | 'transcript_local': 'ND Transcript (local)', |
---|
77 | 'hnd_transcript_local': 'HND Transcript (local)', |
---|
78 | 'pgd_transcript_local': 'PGD Transcript (local)', |
---|
79 | 'transcript_foreign': 'ND Transcript (foreign)', |
---|
80 | 'hnd_transcript_foreign': 'HND Transcript (foreign)', |
---|
81 | 'pgd_transcript_foreign': 'PGD Transcript (foreign)', |
---|
82 | 'ver_result': 'Verification of Result', |
---|
83 | 'change_course': 'Change of Course', |
---|
84 | 'change_inst': 'Change of Institute', |
---|
85 | 'jamb_reject': 'JAMB Rejection Form', |
---|
86 | 'cert_of_cert': 'Certification of Certificate', |
---|
87 | 'ref_let': 'Recommendation/Reference Letter', |
---|
88 | 'proc_cert': 'Processing of Certificate by Proxy', |
---|
89 | 'loss_idcard': 'Loss of ID Card (student)', |
---|
90 | 'staff_loss_idcard': 'Loss of ID Card (staff)', |
---|
91 | 'loss_examcard': 'Loss of Exam Card', |
---|
92 | 'loss_result': 'Loss of Result', |
---|
93 | 'loss_receipt': 'Loss of Receipt', |
---|
94 | 'loss_clearance': 'Loss of Clearance', |
---|
95 | 'conv_brochure': 'ND Convocation Brochure', |
---|
96 | 'hnd_conv_brochure': 'HND Convocation Brochure', |
---|
97 | 'pgd_conv_brochure': 'PGD Convocation Brochure', |
---|
98 | 'log_book': 'Log Book', |
---|
99 | 'jamb_regularization': 'Jamb Regularization', |
---|
100 | 'utme_registration': 'UTME Registration', |
---|
101 | 'utme_cbt': 'UTME CBT', |
---|
102 | 'nysc_id_card': 'NYSC ID Card', |
---|
103 | 'ijmb_result':'IJMB Result', |
---|
104 | 'balance':'Balance', |
---|
105 | } |
---|
106 | |
---|
107 | SELECTABLE_PAYMENT_CATEGORIES = { |
---|
108 | 'clearance': 'Acceptance', |
---|
109 | 'schoolfee': 'School Fee', |
---|
110 | 'carryover1': 'One Carry-Over', |
---|
111 | 'carryover2': 'Two Carry-Overs', |
---|
112 | 'carryover3': 'Three Carry-Overs', |
---|
113 | 'hostel_maintenance': 'Hostel Maintenance', |
---|
114 | 'certificate': 'ND Certificate', |
---|
115 | 'hnd_certificate': 'HND Certificate', |
---|
116 | 'pgd_certificate': 'PGD Certificate', |
---|
117 | 'state_result': 'ND Statement of Result', |
---|
118 | 'hnd_state_result': 'HND Statement of Result', |
---|
119 | 'pgd_state_result': 'PGD Statement of Result', |
---|
120 | 'transcript_local': 'ND Transcript (local)', |
---|
121 | 'hnd_transcript_local': 'HND Transcript (local)', |
---|
122 | 'pgd_transcript_local': 'PGD Transcript (local)', |
---|
123 | 'transcript_foreign': 'ND Transcript (foreign)', |
---|
124 | 'hnd_transcript_foreign': 'HND Transcript (foreign)', |
---|
125 | 'pgd_transcript_foreign': 'PGD Transcript (foreign)', |
---|
126 | 'ver_result': 'Verification of Result', |
---|
127 | 'change_course': 'Change of Course', |
---|
128 | 'change_inst': 'Change of Institute', |
---|
129 | 'jamb_reject': 'JAMB Rejection Form', |
---|
130 | 'cert_of_cert': 'Certification of Certificate', |
---|
131 | 'ref_let': 'Recommendation/Reference Letter', |
---|
132 | 'proc_cert': 'Processing of Certificate by Proxy', |
---|
133 | 'loss_idcard': 'Loss of ID Card (student)', |
---|
134 | 'staff_loss_idcard': 'Loss of ID Card (staff)', |
---|
135 | 'loss_examcard': 'Loss of Exam Card', |
---|
136 | 'loss_result': 'Loss of Result', |
---|
137 | 'loss_receipt': 'Loss of Receipt', |
---|
138 | 'loss_clearance': 'Loss of Clearance', |
---|
139 | 'conv_brochure': 'ND Convocation Brochure', |
---|
140 | 'hnd_conv_brochure': 'HND Convocation Brochure', |
---|
141 | 'pgd_conv_brochure': 'PGD Convocation Brochure', |
---|
142 | 'log_book': 'Log Book', |
---|
143 | 'jamb_regularization': 'Jamb Regularization', |
---|
144 | 'utme_registration': 'UTME Registration', |
---|
145 | 'utme_cbt': 'UTME CBT', |
---|
146 | 'nysc_id_card': 'NYSC ID Card', |
---|
147 | 'ijmb_result':'IJMB Result', |
---|
148 | } |
---|
149 | |
---|
150 | DISABLE_PAYMENT_GROUP_DICT = { |
---|
151 | 'sf_all': 'School Fee - All Students', |
---|
152 | 'sf_non_pg': 'School Fee - Non-PG Students', |
---|
153 | } |
---|
154 | |
---|
155 | SPECIAL_HANDLING_DICT = { |
---|
156 | 'regular': 'Regular Hostel', |
---|
157 | 'blocked': 'Blocked Hostel', |
---|
158 | 'pg': 'Postgraduate Hostel', |
---|
159 | 'iot': 'IOT Hostel' |
---|
160 | } |
---|
161 | |
---|
162 | SPECIAL_APP_DICT = { |
---|
163 | 'certificate': 'ND Certificate', |
---|
164 | 'hnd_certificate': 'HND Certificate', |
---|
165 | 'pgd_certificate': 'PGD Certificate', |
---|
166 | 'state_result': 'ND Statement of Result', |
---|
167 | 'hnd_state_result': 'HND Statement of Result', |
---|
168 | 'pgd_state_result': 'PGD Statement of Result', |
---|
169 | 'transcript_local': 'ND Transcript (local)', |
---|
170 | 'hnd_transcript_local': 'HND Transcript (local)', |
---|
171 | 'pgd_transcript_local': 'PGD Transcript (local)', |
---|
172 | 'transcript_foreign': 'ND Transcript (foreign)', |
---|
173 | 'hnd_transcript_foreign': 'HND Transcript (foreign)', |
---|
174 | 'pgd_transcript_foreign': 'PGD Transcript (foreign)', |
---|
175 | 'ver_result': 'Verification of Result Payment', |
---|
176 | 'change_course': 'Change of Course Payment', |
---|
177 | 'change_inst': 'Change of Institute Payment', |
---|
178 | 'jamb_reject': 'JAMB Rejection Form Payment', |
---|
179 | 'cert_of_cert': 'Certification of Certificate Payment', |
---|
180 | 'ref_let': 'Recommendation/Reference Letter Payment', |
---|
181 | 'proc_cert': 'Processing of Certificate by Proxy Payment', |
---|
182 | 'loss_idcard': 'Loss of ID Card (student)', |
---|
183 | 'staff_loss_idcard': 'Loss of ID Card (staff)', |
---|
184 | 'loss_examcard': 'Loss of Exam Card Payment', |
---|
185 | 'loss_result': 'Loss of Result Payment', |
---|
186 | 'loss_receipt': 'Loss of Receipt Payment', |
---|
187 | 'loss_clearance': 'Loss of Clearance Payment', |
---|
188 | 'conv_brochure': 'ND Convocation Brochure', |
---|
189 | 'hnd_conv_brochure': 'HND Convocation Brochure', |
---|
190 | 'pgd_conv_brochure': 'PGD Convocation Brochure', |
---|
191 | 'log_book': 'Log Book', |
---|
192 | 'jamb_regularization': 'Jamb Regularization', |
---|
193 | 'utme_registration': 'UTME Registration', |
---|
194 | 'utme_cbt': 'UTME CBT', |
---|
195 | 'nysc_id_card': 'NYSC ID Card', |
---|
196 | 'ijmb_result':'IJMB Result', |
---|
197 | 'balance':'Balance', |
---|
198 | } |
---|
199 | |
---|
200 | MODE_GROUPS = { |
---|
201 | 'All': ('all',), |
---|
202 | 'Undergraduate Full-Time': ('hnd_ft','nd_ft'), |
---|
203 | 'Undergraduate Part-Time': ('nd_we','nd_pt','hnd_pt','hnd_we',), |
---|
204 | 'Postgraduate Full-Time': ('pgd_ft',), |
---|
205 | 'Postgraduate Part-Time': ('pgd_pt',), |
---|
206 | 'Pre-ND': ('prend',), |
---|
207 | } |
---|