source: main/waeup.aaue/trunk/src/waeup/aaue/utils/utils.py @ 15411

Last change on this file since 15411 was 15385, checked in by Henrik Bettermann, 6 years ago

Add dsh application type and application category.

  • Property svn:keywords set to Id
File size: 10.1 KB
RevLine 
[7569]1## $Id: utils.py 15385 2019-04-03 17:09:31Z 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"""
[13963]20
21import string
[8823]22from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
[7569]23
[8823]24class CustomKofaUtils(NigeriaKofaUtils):
[7569]25    """A collection of methods subject to customization.
26    """
[7845]27
28    PREFERRED_LANGUAGES_DICT = {
[9755]29        }
30
[14650]31    COURSE_CATEGORY_DICT = {
32        'C':'Core Course (C)',
33        'R':'Required Courses (R)',
34        'E':'Elective Courses (E)',
35        }
36
[9755]37    PAYMENT_CATEGORIES = {
38        'schoolfee': 'School Fee',
[13512]39        'schoolfee_1': 'School Fee Plus (1st instalment)',
40        'schoolfee_2': 'School Fee (2nd instalment)',
[13410]41        'schoolfee_incl': 'School Fee Plus',
[9755]42        'clearance': 'Acceptance Fee',
[13410]43        'clearance_incl': 'Acceptance Fee Plus',
[13424]44        'hostel_maintenance': 'Hostel Accommodation Fee',
[9755]45        'application': 'Application Fee',
46        'bed_allocation': 'Bed Allocation Fee',
47        'transfer': 'Transfer Fee',
[14296]48        'transcript_local': 'Local Transcript Fee',
49        'transcript_inter': 'International Transcript Fee',
[13035]50        'late_registration': 'Late Course Registration Fee',
[13402]51        'welfare': 'Student Welfare Assurance Fee',
[13463]52        'union': 'Student Union Dues',
[13402]53        'lapel': 'Lapel/File Fee',
[13374]54        'matric_gown': 'Matriculation Gown Fee',
55        'concessional': 'Concessional Fee',
[14234]56        'id_card': 'Student ID Card',
[14355]57        'gst_text_book_0': 'Text Book Fee GST101 GST102 GST111 GST112',
58        'gst_text_book_1': 'Text Book Fee GST101 GST102',
59        'gst_text_book_2': 'Text Book Fee GST111 GST112',
[14258]60        'gst_text_book_3': 'Text Book Fee GST222',
[14621]61        'ent_text_book_1': 'Text Book Fee ENT201',
[14258]62        'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112',
63        'gst_registration_2': 'Registration Fee GST222',
[14620]64        'ent_registration_1': 'Registration Fee ENT201',
[14248]65        'fac_dep': 'Faculty and Departmental Dues',
[14375]66        'restitution': 'Restitution Fee',
[9755]67        }
68
69    SELECTABLE_PAYMENT_CATEGORIES = {
[13435]70        'schoolfee': 'School Fee without additional fees',
[15182]71        'schoolfee_1': 'School Fee (1st instalment) + Student Union Dues + Welfare Assurance, Library and Sports Fees',
[13512]72        'schoolfee_2': 'School Fee (2nd instalment)',
[15182]73        'schoolfee_incl': 'School Fee + Student Union Dues + Welfare Assurance, Library and Sports Fees',
[13435]74        'clearance': 'Acceptance Fee without additional fees',
[14239]75        'clearance_incl': 'Acceptance Fee + Matric Gown Fee + Lapel/File Fee',
[13454]76        'hostel_maintenance': 'Hostel Accommodation Fee',
[14243]77        #'application': 'Application Fee',
[11621]78        #'bed_allocation': 'Bed Allocation Fee',
79        #'transfer': 'Transfer Fee',
[14296]80        'transcript_local': 'Local Transcript Fee',
81        'transcript_inter': 'International Transcript Fee',
[13035]82        'late_registration': 'Late Course Registration Fee',
[14243]83        #'welfare': 'Student Welfare Assurance Fee',
84        #'union': 'Student Union Dues',
85        #'lapel': 'Lapel/File Fee',
86        #'matric_gown': 'Matriculation Gown Fee',
[13374]87        'concessional': 'Concessional Fee',
[14243]88        #'id_card': 'Student ID Card',
[14355]89        'gst_text_book_0': 'Text Book Fee GST101 GST102 GST111 GST112',
90        'gst_text_book_1': 'Text Book Fee GST101 GST102',
91        'gst_text_book_2': 'Text Book Fee GST111 GST112',
[14258]92        'gst_text_book_3': 'Text Book Fee GST222',
[14621]93        'ent_text_book_1': 'Text Book Fee ENT201',
[14258]94        'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112',
95        'gst_registration_2': 'Registration Fee GST222',
[14620]96        'ent_registration_1': 'Registration Fee ENT201',
[14501]97        #'fac_dep': 'Faculty and Departmental Dues',
[14375]98        'restitution': 'Restitution Fee',
[9755]99        }
100
[13451]101    REPORTABLE_PAYMENT_CATEGORIES = {
102        'schoolfee': 'School Fee',
[13452]103        'schoolfee_incl': 'School Fee Plus',
[13635]104        'schoolfee_1': 'School Fee 1 Plus',
105        'schoolfee_2': 'School Fee 2',
[13451]106        'clearance': 'Acceptance Fee',
[13452]107        'clearance_incl': 'Acceptance Fee Plus',
[13451]108        'hostel_maintenance': 'Hostel Maintenance Fee',
109        }
110
[13638]111    BALANCE_PAYMENT_CATEGORIES = {
112        'schoolfee': 'School Fee',
113        'clearance': 'Acceptance Fee',
114        'hostel_maintenance': 'Hostel Maintenance Fee',
[13750]115        'late_registration': 'Late Course Registration Fee',
116        'welfare': 'Student Welfare Assurance Fee',
117        'union': 'Student Union Dues',
118        'lapel': 'Lapel/File Fee',
119        'matric_gown': 'Matriculation Gown Fee',
[14234]120        'id_card': 'Student ID Card',
[14258]121        'gst_text_book_1': 'Text Book Fee GST101 GST102',
122        'gst_text_book_2': 'Text Book Fee GST111 GST112',
123        'gst_text_book_3': 'Text Book Fee GST222',
[14621]124        'ent_text_book_1': 'Text Book Fee ENT201',
[14258]125        'gst_registration_1': 'Registration Fee GST101 GST102 GST111 GST112',
126        'gst_registration_2': 'Registration Fee GST222',
[14620]127        'ent_registration_1': 'Registration Fee ENT201',
[14248]128        'fac_dep': 'Faculty and Departmental Dues',
[14375]129        'restitution': 'Restitution Fee',
[13638]130        }
131
[14544]132    PREVIOUS_PAYMENT_CATEGORIES = {
133        'schoolfee': 'School Fee',
134        'clearance': 'Acceptance Fee',
135        }
136
[10304]137    APP_CATS_DICT = {
138        'basic': 'PUTME, PUDE, PCE, PRENCE',
139        'no': 'No Application',
140        'pg_ft': 'Postgraduate Full-Time',
141        'pg_pt': 'Postgraduate Part-Time',
142        'cest': 'Part-Time, Diploma, Certificate',
143        'found': 'Foundation',
[10893]144        'ptee': 'Part-Time Entrance Examination',
[13568]145        'ioe_dp': 'Institute of Education Diploma',
[14339]146        'ijmbe': 'IJMBE Preparation',
[15224]147        'bridge': 'Bridge',
[15385]148        'dsh': 'Science and Humanities',
149
[10304]150        }
151
[11591]152    STUDY_MODES_DICT = {
153        'ug_ft': 'Undergraduate Full Time',
154        'ug_pt': 'Undergraduate Part Time',
[11593]155        'de_ft': 'Direct Entry Full Time',
156        'de_pt': 'Direct Entry Part Time',
[11591]157        'dp_pt': 'Diploma Part Time',
158        'dp_ft': 'Diploma Full Time',
[13524]159        'special_pg_ft': 'Postgraduate Full Time',
160        'special_pg_pt': 'Postgraduate Part Time',
[11591]161        'found': 'Foundation',
[13498]162        'transfer': 'Transfer',
[13749]163        'mug_ft': 'Undergraduate Full Time Merit List',
164        'mde_ft': 'Direct Entry Full Time Merit List',
[14339]165        'ijmbe': 'IJMBE Preparation',
[15217]166        'bridge': 'Bridge',
[15382]167        'ug_dsh': 'Undergraduate Science and Humanities',
168        'de_dsh': 'Direct Entry Science and Humanities',
[11591]169        }
170
[14700]171    ENABLE_SCORE_EDITING_GROUP_DICT = STUDY_MODES_DICT
172
[13127]173    VERDICTS_DICT = {
174        '0': 'not yet',
175        'A': 'Successful student',
176        'B': 'Student with carryover courses',
177        'C': 'Student on probation',
[14475]178        'D': 'Withdrawn from the faculty',
[13127]179        #'E': 'Student who were previously on probation',
180        #'F': 'Medical case',
181        #'G': 'Absent from examination',
182        #'H': 'Withheld results',
183        #'I': 'Expelled/rusticated/suspended student',
184        #'J': 'Temporary withdrawn from the university',
185        #'K': 'Unregistered student',
186        #'L': 'Referred student',
187        #'M': 'Reinstatement',
188        #'N': 'Student on transfer',
189        #'O': 'NCE-III repeater',
190        #'Y': 'No previous verdict',
191        #'X': 'New 300 level student',
192        'Z': 'Successful student (provisional)',
193        #'A1': 'First Class',
194        #'A2': 'Second Class Upper',
195        #'A3': 'Second Class Lower',
196        #'A4': 'Third Class',
197        #'A5': 'Pass',
198        #'A6': 'Distinction',
199        #'A7': 'Credit',
200        #'A8': 'Merit',
[14487]201        'NER': 'No evidence of registration',
202        'NYV': 'Not yet verified',
[13127]203        'FRNS': 'Faculty requirements not satisfied',
204        }
[13454]205
206    DISABLE_PAYMENT_GROUP_DICT = {
207        'sf_all': 'School Fee - All Students',
[14246]208        'sf_pg': 'School Fee - Postgraduate Students',
[14571]209        'sf_ug_pt': 'School Fee - Undergraduate Part-Time Students',
[14246]210        'sf_found': 'School Fee - Foundation Students',
[13454]211        'maint_all': 'Accommodation Fee - All Students',
[13794]212        'cl_regular': 'Acceptance Fee - Regular Students',
[13454]213        }
[13870]214
215    MODE_GROUPS = {
216        'All': ('all',),
217        'Undergraduate Full-Time': ('ug_ft', 'mde_ft', 'mug_ft', 'de_ft'),
218        'Undergraduate Part-Time': ('ug_pt', 'de_pt'),
219        'Postgraduate': ('pg_ft','special_pg_ft', 'special_pg_pt'),
220        'Foundation Programme': ('found',),
221        'Institute of Education': ('dp_ft'),
[15242]222        'IJMBE Preparation': ('ijmbe',),
223        'Bridge': ('bridge',),
[13870]224        }
[13963]225
226    def fullname(self, firstname, lastname, middlename=None):
227        """Construct fullname.
228        """
229        try:
230            lastname = lastname.upper()
231        except AttributeError:
232            pass
[14594]233        # We remove single initial
234        if firstname and len(firstname) == 1:
235            firstname = ''
236        if middlename and len(middlename) == 1:
237            middlename = ''
238        if lastname and len(lastname) == 1:
239            lastname = ''
240        # We construct givennames
241        givennames = ''
242        if middlename and firstname:
[13963]243            givennames = '%s %s' % (firstname, middlename)
[14594]244        elif firstname:
245            givennames = firstname
246        elif middlename:
247            givennames = middlename
[13963]248        givennames = string.capwords(
249            givennames.replace('-', ' - ')).replace(' - ', '-')
[14594]250        # We construct fullname
251        fullname = ''
252        if lastname and givennames:
253            fullname = '%s, %s' % (lastname, givennames)
254        elif lastname:
255            fullname = lastname
256        elif givennames:
257            fullname = givennames
[13963]258        if '<' in fullname:
259            return 'XXX'
260        return fullname
Note: See TracBrowser for help on using the repository browser.