source: main/kofacustom.coewarri/trunk/src/kofacustom/coewarri/utils/utils.py @ 14801

Last change on this file since 14801 was 14545, checked in by Henrik Bettermann, 8 years ago

Add application type, application category and study mode.

  • Property svn:keywords set to Id
File size: 2.3 KB
Line 
1## $Id: utils.py 14545 2017-02-14 10:22:20Z 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"""
20from copy import deepcopy
21from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
22
23class 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        'nceptw': 'NCE Part-Time Weekend Programme',
34        'prence': 'Pre-NCE Programme',
35        }
36
37    STUDY_MODES_DICT = {
38        'ug_ft': 'Undergraduate Full-Time',
39        'de_ft': 'Direct Entry Full-Time',
40        'pg_ft': 'Postgraduate Full-Time',
41        'pg_pt': 'Postgraduate Part-Time',
42        'nce_ft': 'NCE Full-Time',
43        'nce_pt': 'NCE Part-Time',
44        'nce_we_pt': 'NCE Part-Time Weekend',
45        'nce_sw': 'NCE Sandwich',
46        'prence': 'Pre-NCE',
47        'no': 'no application',
48        }
49
50    PAYMENT_CATEGORIES = {
51        'schoolfee': 'School Fee (total)',
52        'schoolfee_1': 'School Fee (1st instalment)',
53        'schoolfee_2': 'School Fee (2nd instalment)',
54        'clearance': 'Acceptance Fee',
55        #'bed_allocation': 'Bed Allocation Fee',
56        #'hostel_maintenance': 'Hostel Maintenance Fee',
57        #'transfer': 'Transfer Fee',
58        #'gown': 'Gown Hire Fee',
59        'application': 'Application Fee',
60        #'transcript': 'Transcript Fee',
61        #'late_registration': 'Late Course Registration Fee'
62        }
63
64    SELECTABLE_PAYMENT_CATEGORIES = deepcopy(PAYMENT_CATEGORIES)
Note: See TracBrowser for help on using the repository browser.