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

Last change on this file since 15870 was 15858, checked in by Henrik Bettermann, 5 years ago

Add COMBINED UG FULL TIME APPLICATION type with subtypes.

  • Property svn:keywords set to Id
File size: 6.2 KB
Line 
1## $Id: utils.py 15858 2019-11-27 09:17:47Z 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
21from copy import deepcopy
22from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
23
24class CustomKofaUtils(NigeriaKofaUtils):
25    """A collection of methods subject to customization.
26    """
27
28    PAYMENT_CATEGORIES = {
29        'schoolfee': 'Tuition Plus (total amount)',
30        'schoolfee40': 'Tuition Plus (40% - 1st instalment)',
31        'secondinstal': 'Tuition Plus (60% - 2nd instalment)',
32        'clearance': 'Acceptance Fee',
33        'registration': 'Registration Fee',
34        #'bed_allocation': 'Bed Allocation Fee',
35        #'hostel_maintenance': 'Accommodation',
36        #'transfer': 'Transfer Fee',
37        #'gown': 'Gown Hire Fee',
38        'application': 'Application Fee',
39        'app_balance': 'Application Fee Balance',
40        'transcript_local': 'Transcript Fee Local',
41        'transcript_overseas': 'Transcript Fee Oversea',
42        'late_registration': 'Late Registration Fee',
43        'science': 'Science Bench Fee',
44        'clinical': 'Clinical Fee (Medical Students)',
45        'develop': 'Development Fee',
46        'municipal_fresh': 'Municipal Fee Fresh)',
47        'municipal_returning': 'Municipal Fee Returning)',
48        'alumni': 'Alumni Fee',
49        'conv': 'Convocation Fee',
50        'matric': 'Matriculation Fee',
51        'waecneco': 'WAEC & NECO Verification',
52        'jambver': 'JAMB Verification',
53        'book': 'Book Deposit',
54        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
55        'pharmlab': 'Pharmacy Lab Support Fee',
56        'lo_ident': 'Letter of Identification Fee',
57        'change_course': 'Change of Course Fee',
58        'make_up': 'Make-up Fee',
59        'iuits': 'IUITS Fee',
60        'fine': 'Fine',
61        'combi': 'Combi Payment',
62        }
63
64    SELECTABLE_PAYMENT_CATEGORIES = {
65        'schoolfee': 'Tuition, Accommodation, Adm. Charges (total amount)',
66        'schoolfee40': 'Tuition, Accommodation, Adm. Charges (40% - 1st instalment)',
67        'secondinstal': 'Tuition, Accommodation, Adm. Charges (60% - 2nd instalment)',
68        'registration': 'Registration Fee',
69        #'bed_allocation': 'Bed Allocation Fee',
70        #'hostel_maintenance': 'Accommodation',
71        #'transfer': 'Transfer Fee',
72        #'gown': 'Gown Hire Fee',
73        #'application': 'Application Fee',
74        #'app_balance': 'Application Fee Balance',
75        'transcript_local': 'Transcript Fee (Local Students)',
76        'transcript_overseas': 'Transcript Fee (Oversea Students)',
77        'late_registration': 'Late Registration Fee',
78        'science': 'Science Bench Fee',
79        'clinical': 'Clinical Fee (Medical Students)',
80        'develop': 'Development Fee',
81        'municipal_fresh': 'Municipal Fee (Fresh Students)',
82        'municipal_returning': 'Municipal Fee (Returning Students)',
83        'alumni': 'Alumni Fee',
84        'conv': 'Convocation Fee',
85        'matric': 'Matriculation Fee',
86        'waecneco': 'WAEC & NECO Verification',
87        'jambver': 'JAMB Verification',
88        'book': 'Book Deposit',
89        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
90        'pharmlab': 'Pharmacy Lab Support Fee',
91        'lo_ident': 'Letter of Identification Fee',
92        'change_course': 'Change of Course Fee',
93        'make_up': 'Make-up Fee',
94        'iuits': 'IUITS Fee',
95        'fine': 'Fine',
96        'combi': 'Combi Payment',
97        }
98
99    PREVIOUS_PAYMENT_CATEGORIES = {
100        'schoolfee': 'Tuition, Accommodation, Adm. Charges (total amount)',
101        'registration': 'Registration Fee',
102        'application': 'Application Fee',
103        'late_registration': 'Late Registration Fee',
104        'science': 'Science Bench Fee',
105        'clinical': 'Clinical Fee (Medical Students)',
106        'develop': 'Development Fee',
107        'municipal_fresh': 'Municipal Fee (Fresh Students)',
108        'municipal_returning': 'Municipal Fee (Returning Students)',
109        'alumni': 'Alumni Fee',
110        'conv': 'Convocation Fee',
111        'matric': 'Matriculation Fee',
112        'waecneco': 'WAEC & NECO Verification',
113        'jambver': 'JAMB Verification',
114        'book': 'Book Deposit',
115        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
116        'pharmlab': 'Pharmacy Lab Support Fee',
117        'lo_ident': 'Letter of Identification Fee',
118        'change_course': 'Change of Course Fee',
119        'make_up': 'Make-up Fee',
120        'iuits': 'IUITS Fee',
121        'fine': 'Fine',
122        }
123
124    COMBI_PAYMENT_CATEGORIES = {
125        'late_registration': 'Late Registration Fee',
126        'science': 'Science Bench Fee',
127        'clinical': 'Clinical Fee (Medical Students)',
128        'develop': 'Development Fee',
129        'municipal_fresh': 'Municipal Fee (Fresh Students)',
130        'municipal_returning': 'Municipal Fee (Returning Students)',
131        'alumni': 'Alumni Fee',
132        'conv': 'Convocation Fee',
133        'matric': 'Matriculation Fee',
134        'waecneco': 'WAEC & NECO Verification',
135        'jambver': 'JAMB Verification',
136        #'book': 'Book Deposit',
137        'parentsconsult': 'Parents Consultative Forum (PCF) Fee',
138        'pharmlab': 'Pharmacy Lab Support Fee',
139        'lo_ident': 'Letter of Identification Fee',
140        'change_course': 'Change of Course Fee',
141        'make_up': 'Make-up Fee',
142        'iuits': 'IUITS Fee',
143        'fine': 'Fine',
144        }
145
146    APP_CATS_DICT = {
147        'basic': 'UAS, PUTME, PUDE, PCE, PRENCE',
148        'no': 'No Application',
149        'pg': 'Postgraduate Programmes',
150        'pre': 'Pre-Degree Studies',
151        'pt': 'Part-Time Degree Programmes',
152        'ut': 'Undergraduate Programmes',
153        }
Note: See TracBrowser for help on using the repository browser.