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
RevLine 
[7569]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##
[7822]18"""Customize general helper utilities for Kofa.
[7569]19"""
[8821]20from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
[7569]21
[8821]22class CustomKofaUtils(NigeriaKofaUtils):
[7569]23    """A collection of methods subject to customization.
24    """
[7845]25
[12589]26    SYSTEM_MAX_LOAD = {
27        'swap-mem': None,
28        'virt-mem': 80.0,
29        'cpu-load': 100.0,
30        }
31
[7845]32    PREFERRED_LANGUAGES_DICT = {
[9635]33        }
34
35    APP_CATS_DICT = {
[13947]36        'basic': 'ASE, PUDE, PCE, PRENCE',
[9635]37        'no': 'No Application',
38        'sandwich': 'Sandwich',
39        'cest': 'Part-Time, Diploma, Certificate',
40        'dp_ft': 'Diploma Full-Time Programmes',
[12575]41        'pt_ext': 'Part-Time (extended application)',
[13011]42        'pg': 'Postgraduate (main advert)',
[17048]43        'coe': 'CoE Programmes',
[13615]44        'pgnils': 'Postgraduate NILS',
[13011]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)',
[13137]50        'pre': 'Pre-Degree Studies',
[14050]51        'asaba': 'FCE Asaba',
52        'akoka': 'FCE Akoka',
53        'akokaj': 'FCE Akoka JUPEB',
[14811]54        'special_ft': 'Special Full-Time',
[14965]55        'cdl': 'Center For Distance Learning',
[16807]56        'french': 'French Language Center',
[9655]57        }
58
[9757]59    # de modes are only used for entry_mode
[9655]60    MODE_GROUPS = {
61        'All':('all',),
[14811]62        'Undergraduate Full-Time':('ug_ft', 'special_ft'),
[9757]63        'Undergraduate Part-Time':('ug_pt'),
[14808]64        'Diploma/Certificate Full-Time':('dp_ft', 'ct_ft'),
65        'Diploma/Certificate Part-Time':('dp_pt', 'ct_pt'),
[9655]66        'Postgraduate Full-Time':('pg_ft', 'pgd_ft'),
67        'Postgraduate Part-Time':('pg_pt', 'special_pg_pt', 'pgd_pt'),
[9727]68        }
69
70    PAYMENT_CATEGORIES = {
71        'schoolfee': 'School Fee',
72        'clearance': 'Acceptance Fee',
[13251]73        'bed_allocation': 'Bed Allocation Fee',
74        #'hostel_application': 'Hostel Application Fee',
[9731]75        'hostel_maintenance': 'Hostel Maintenance Fee',
[13251]76        #'tempmaint_1': 'Hall 1-4 M/F Ekehuan',
77        #'tempmaint_2': 'Hall 5 M/F',
78        #'tempmaint_3': 'Clinical Hostel',
[9727]79        'transfer': 'Transfer Fee',
80        'gown': 'Gown Hire Fee',
[10469]81        'application': 'Application Fee',
82        'transcript': 'Transcript Fee',
[11782]83        'admission_checking': 'Admission Checking Fee',
[13785]84        'jupeb': 'JUPEB Examination Fee',
[14358]85        'registration': 'Total Registration Fee',
86        'clinexam':'Clinical Examination Fee',
[14970]87        #'pharmd_1':'Clerkship Fee',
[14960]88        'pharmd_2':'Module 1 Fee',
[15106]89        'develop':'Development Fee',
[15537]90        'carryover':'School Fee (carry over from previous sessions)',
91        'foreign':'School Fee (paid in foreign currency)',
[16386]92        'medical_quest':'Medical Questionnaire Fee',
[16780]93        'plag_test':'Final Year Plagiarism Test',
[16866]94        'flc_modules': 'FLC Modules Fee',
[9731]95        }
96
97    SELECTABLE_PAYMENT_CATEGORIES = {
98        'schoolfee': 'School Fee',
99        'clearance': 'Acceptance Fee',
[13251]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',
[9731]106        'gown': 'Gown Hire Fee',
[10469]107        'application': 'Application Fee',
108        'transcript': 'Transcript Fee',
[13576]109        'transfer': 'Transfer Fee',
[13785]110        'jupeb': 'JUPEB Examination Fee',
[14358]111        'clinexam':'Clinical Examination Fee',
[14970]112        #'pharmd_1':'PharmD Clerkship Fee (1st school fee prepayment)',
[14971]113        'pharmd_2':'PharmD Module 1 Fee (school fee prepayment)',
[15108]114        #'develop':'Development Fee',
[16386]115        'medical_quest':'Medical Questionnaire Fee',
[16780]116        'plag_test':'Final Year Plagiarism Test (for final year project or PG thesis)',
[16866]117        'flc_modules': 'FLC Modules Fee',
[10441]118        }
119
[16404]120    REPORTABLE_PAYMENT_CATEGORIES = {
121        'schoolfee': 'School Fee',
122        'clearance': 'Acceptance Fee',
[16522]123        'bed_allocation': 'Bed Allocation Fee',
[16404]124        'hostel_maintenance': 'Hostel Maintenance Fee',
125        'medical_quest':'Medical Questionnaire Fee',
126        }
127
[15437]128    def selectable_payment_categories(self, student):
129        return self.SELECTABLE_PAYMENT_CATEGORIES
130
[13566]131    DISABLE_PAYMENT_GROUP_DICT = {
[16373]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',
[16516]139        'sf_return': 'School Fee - Returning',
[16373]140        'maint_all': 'Accomm. Fee - All',
141        'cl_all':    'Accept. Fee- All',
142        'cl_jupeb':  'Accept. Fee - JUPEB',
[16374]143        'cl_allexj': 'Accept. Fee - All except JUPEB',
[13566]144        }
145
[10441]146    SEMESTER_DICT = {
147        1: '1st Semester',
148        2: '2nd Semester',
149        3: 'Combined',
[10471]150        4: '1st Term',
151        5: '2nd Term',
152        6: '3rd Term',
[16813]153        9: 'N/A',
154        11: 'Module I',
155        12: 'Module II',
156        13: 'Module III',
[11669]157        }
158
159    BALANCE_PAYMENT_CATEGORIES = {
160        'schoolfee': 'School Fee',
161        'clearance': 'Clearance Fee',
[13488]162        'hostel_maintenance': 'Hostel Maintenance Fee',
[13514]163        'bed_allocation': 'Bed Allocation Fee',
[15537]164        'carryover':'School Fee (carry over from previous sessions)',
165        'foreign':'School Fee (paid in foreign currency)',
[16866]166        'flc_modules': 'FLC Modules Fee',
[12407]167        }
168
169    EXAM_GRADES = NigeriaKofaUtils.EXAM_GRADES + (('B1', 'B1'), ('P', 'P'),)
[13294]170
171    SPECIAL_HANDLING_DICT = {
172        'regular': 'Regular Hostel',
173        'blocked': 'Blocked Hostel',
[13446]174        'clinical': 'Clinical Hostel',
[13759]175        'ekenwan': 'Ekenwan Campus',
176        'pg': 'Postgraduate Hostel',
[13294]177        }
[14808]178
179    STUDY_MODES_DICT = {
[14811]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',
[14808]193        'ug_sw': 'Undergraduate Sandwich',
[14811]194        'transfer_pt': 'Transfer Part-Time',
195        'transfer_ft': 'Transfer Full-Time',
196        'ct_pt': 'Certificate Part-Time',
[14808]197        'transfer': 'Transfer',
[16829]198        'transferred': 'Transferred',
[14808]199        'found': 'Foundation',
200        'no': 'no application',
[14811]201        'special_ft': 'Special Full-Time'
[14808]202        }
Note: See TracBrowser for help on using the repository browser.