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

Last change on this file since 16925 was 16866, checked in by Henrik Bettermann, 3 years ago

Add payment category.

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