1 | ## $Id: utils.py 14344 2016-12-14 16:57:13Z 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': 'UTME, DE, PCE', |
---|
29 | 'no': 'No Application', |
---|
30 | 'degree': 'Degree Programme', |
---|
31 | 'nce': 'NCE Programme', |
---|
32 | 'ncept': 'NCE Part-Time Programme', |
---|
33 | 'prence': 'Pre-NCE Programme', |
---|
34 | } |
---|
35 | |
---|
36 | STUDY_MODES_DICT = { |
---|
37 | 'ug_ft': 'Undergraduate Full Time', |
---|
38 | 'pg_ft': 'Postgraduate Full Time', |
---|
39 | 'pg_pt': 'Postgraduate Part Time', |
---|
40 | 'nce_ft': 'NCE Full Time', |
---|
41 | 'nce_pt': 'NCE Part Time', |
---|
42 | 'nce_sw': 'NCE Sandwich', |
---|
43 | 'prence': 'Pre-NCE', |
---|
44 | 'no': 'no application', |
---|
45 | } |
---|
46 | |
---|
47 | PAYMENT_CATEGORIES = { |
---|
48 | 'schoolfee': 'School Fee (total)', |
---|
49 | 'schoolfee_1': 'School Fee (1st instalment)', |
---|
50 | 'schoolfee_2': 'School Fee (2nd instalment)', |
---|
51 | 'clearance': 'Acceptance Fee', |
---|
52 | #'bed_allocation': 'Bed Allocation Fee', |
---|
53 | #'hostel_maintenance': 'Hostel Maintenance Fee', |
---|
54 | #'transfer': 'Transfer Fee', |
---|
55 | #'gown': 'Gown Hire Fee', |
---|
56 | 'application': 'Application Fee', |
---|
57 | #'transcript': 'Transcript Fee', |
---|
58 | #'late_registration': 'Late Course Registration Fee' |
---|
59 | } |
---|
60 | |
---|
61 | SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES) |
---|