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

Last change on this file since 17421 was 17401, checked in by Henrik Bettermann, 17 months ago

Enable previous payments for all selectable categories.

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