source: main/waeup.uniben/trunk/src/waeup/uniben/utils/utils.py @ 17048

Last change on this file since 17048 was 17048, checked in by Henrik Bettermann, 2 years ago

Modify application types and categories.

  • Property svn:keywords set to Id
File size: 7.5 KB
Line 
1## $Id: utils.py 17048 2022-08-01 08:12:27Z 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 kofacustom.nigeria.utils.utils import NigeriaKofaUtils
21
22class 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': 'ASE, PUDE, PCE, PRENCE',
37        'no': 'No Application',
38        'sandwich': 'Sandwich',
39        'cest': 'Part-Time, Diploma, Certificate',
40        'dp_ft': 'Diploma Full-Time Programmes',
41        'pt_ext': 'Part-Time (extended application)',
42        'pg': 'Postgraduate (main advert)',
43        'coe': 'CoE Programmes',
44        'pgnils': 'Postgraduate NILS',
45        'pg_ft': 'Postgraduate Full-Time (deprecated)',
46        'pg_pt': 'Postgraduate Part-Time (deprecated)',
47        'pg_ext': 'Postgraduate (extended application, deprecated)',
48        'pg_new': 'Postgraduate (supplementary application #1, deprecated)',
49        'pg_new2': 'Postgraduate (supplementary application #2, deprecated)',
50        'pre': 'Pre-Degree Studies',
51        'asaba': 'FCE Asaba',
52        'akoka': 'FCE Akoka',
53        'akokaj': 'FCE Akoka JUPEB',
54        'special_ft': 'Special Full-Time',
55        'cdl': 'Center For Distance Learning',
56        'french': 'French Language Center',
57        }
58
59    # de modes are only used for entry_mode
60    MODE_GROUPS = {
61        'All':('all',),
62        'Undergraduate Full-Time':('ug_ft', 'special_ft'),
63        'Undergraduate Part-Time':('ug_pt'),
64        'Diploma/Certificate Full-Time':('dp_ft', 'ct_ft'),
65        'Diploma/Certificate Part-Time':('dp_pt', 'ct_pt'),
66        'Postgraduate Full-Time':('pg_ft', 'pgd_ft'),
67        'Postgraduate Part-Time':('pg_pt', 'special_pg_pt', 'pgd_pt'),
68        }
69
70    PAYMENT_CATEGORIES = {
71        'schoolfee': 'School Fee',
72        'clearance': 'Acceptance Fee',
73        'bed_allocation': 'Bed Allocation Fee',
74        #'hostel_application': 'Hostel Application Fee',
75        'hostel_maintenance': 'Hostel Maintenance Fee',
76        #'tempmaint_1': 'Hall 1-4 M/F Ekehuan',
77        #'tempmaint_2': 'Hall 5 M/F',
78        #'tempmaint_3': 'Clinical Hostel',
79        'transfer': 'Transfer Fee',
80        'gown': 'Gown Hire Fee',
81        'application': 'Application Fee',
82        'transcript': 'Transcript Fee',
83        'admission_checking': 'Admission Checking Fee',
84        'jupeb': 'JUPEB Examination Fee',
85        'registration': 'Total Registration Fee',
86        'clinexam':'Clinical Examination Fee',
87        #'pharmd_1':'Clerkship Fee',
88        'pharmd_2':'Module 1 Fee',
89        'develop':'Development Fee',
90        'carryover':'School Fee (carry over from previous sessions)',
91        'foreign':'School Fee (paid in foreign currency)',
92        'medical_quest':'Medical Questionnaire Fee',
93        'plag_test':'Final Year Plagiarism Test',
94        'flc_modules': 'FLC Modules Fee',
95        }
96
97    SELECTABLE_PAYMENT_CATEGORIES = {
98        'schoolfee': 'School Fee',
99        'clearance': 'Acceptance Fee',
100        'bed_allocation': 'Bed Allocation Fee',
101        #'hostel_application': 'Hostel Application Fee',
102        'hostel_maintenance': 'Hostel Maintenance Fee',
103        #'tempmaint_1': 'Hall 1-4 M/F Ekehuan Maintenance Fee',
104        #'tempmaint_2': 'Hall 5 M/F Maintenance Fee',
105        #'tempmaint_3': 'Clinical Hostel Maintenance Fee',
106        'gown': 'Gown Hire Fee',
107        'application': 'Application Fee',
108        'transcript': 'Transcript Fee',
109        'transfer': 'Transfer Fee',
110        'jupeb': 'JUPEB Examination Fee',
111        'clinexam':'Clinical Examination Fee',
112        #'pharmd_1':'PharmD Clerkship Fee (1st school fee prepayment)',
113        'pharmd_2':'PharmD Module 1 Fee (school fee prepayment)',
114        #'develop':'Development Fee',
115        'medical_quest':'Medical Questionnaire Fee',
116        'plag_test':'Final Year Plagiarism Test (for final year project or PG thesis)',
117        'flc_modules': 'FLC Modules Fee',
118        }
119
120    REPORTABLE_PAYMENT_CATEGORIES = {
121        'schoolfee': 'School Fee',
122        'clearance': 'Acceptance Fee',
123        'bed_allocation': 'Bed Allocation Fee',
124        'hostel_maintenance': 'Hostel Maintenance Fee',
125        'medical_quest':'Medical Questionnaire Fee',
126        }
127
128    def selectable_payment_categories(self, student):
129        return self.SELECTABLE_PAYMENT_CATEGORIES
130
131    DISABLE_PAYMENT_GROUP_DICT = {
132        'sf_all':    'School Fee - All',
133        'sf_found':  'School Fee - Foundation',
134        'sf_pg':     'School Fee - PG',
135        'sf_pt':     'School Fee - UG PT',
136        'sf_ft':     'School Fee - UG FT',
137        'sf_sw':     'School Fee - Sandwich',
138        'sf_dp':     'School Fee - Diploma',
139        'sf_return': 'School Fee - Returning',
140        'maint_all': 'Accomm. Fee - All',
141        'cl_all':    'Accept. Fee- All',
142        'cl_jupeb':  'Accept. Fee - JUPEB',
143        'cl_allexj': 'Accept. Fee - All except JUPEB',
144        }
145
146    SEMESTER_DICT = {
147        1: '1st Semester',
148        2: '2nd Semester',
149        3: 'Combined',
150        4: '1st Term',
151        5: '2nd Term',
152        6: '3rd Term',
153        9: 'N/A',
154        11: 'Module I',
155        12: 'Module II',
156        13: 'Module III',
157        }
158
159    BALANCE_PAYMENT_CATEGORIES = {
160        'schoolfee': 'School Fee',
161        'clearance': 'Clearance Fee',
162        'hostel_maintenance': 'Hostel Maintenance Fee',
163        'bed_allocation': 'Bed Allocation Fee',
164        'carryover':'School Fee (carry over from previous sessions)',
165        'foreign':'School Fee (paid in foreign currency)',
166        'flc_modules': 'FLC Modules Fee',
167        }
168
169    EXAM_GRADES = NigeriaKofaUtils.EXAM_GRADES + (('B1', 'B1'), ('P', 'P'),)
170
171    SPECIAL_HANDLING_DICT = {
172        'regular': 'Regular Hostel',
173        'blocked': 'Blocked Hostel',
174        'clinical': 'Clinical Hostel',
175        'ekenwan': 'Ekenwan Campus',
176        'pg': 'Postgraduate Hostel',
177        }
178
179    STUDY_MODES_DICT = {
180        'ume_ft': 'UME Full-Time',
181        'ug_ft': 'Undergraduate Full-Time',
182        'ug_pt': 'Undergraduate Part-Time',
183        'dp_pt': 'Diploma Part-Time',
184        'ct_ft': 'Certificate Full-Time',
185        'dp_ft': 'Diploma Full-Time',
186        'de_ft': 'Direct Entry Full-Time',
187        'de_pt': 'Direct Entry Part-Time',
188        'pg_ft': 'Postgraduate Full-Time',
189        'pg_pt': 'Postgraduate Part-Time',
190        'pgd_ft': 'Postgraduate Diploma Full-Time',
191        'pgd_pt': 'Postgraduate Diploma Part-Time',
192        'special_pg_pt': 'Special Postgraduate Part-Time',
193        'ug_sw': 'Undergraduate Sandwich',
194        'transfer_pt': 'Transfer Part-Time',
195        'transfer_ft': 'Transfer Full-Time',
196        'ct_pt': 'Certificate Part-Time',
197        'transfer': 'Transfer',
198        'transferred': 'Transferred',
199        'found': 'Foundation',
200        'no': 'no application',
201        'special_ft': 'Special Full-Time'
202        }
Note: See TracBrowser for help on using the repository browser.