source: main/kofacustom.unidel/trunk/src/kofacustom/unidel/utils/utils.py @ 18143

Last change on this file since 18143 was 18143, checked in by Henrik Bettermann, 4 days ago

New fees.

  • Property svn:keywords set to Id
File size: 4.6 KB
RevLine 
[16717]1## $Id: utils.py 18143 2025-07-30 09:52:58Z henrik $
[15614]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"""
[16870]20from copy import deepcopy
[15614]21from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
22
23class CustomKofaUtils(NigeriaKofaUtils):
24    """A collection of methods subject to customization.
25    """
26
[16870]27    PAYMENT_CATEGORIES = {
28        'schoolfee': 'School Fee',
29        'clearance': 'Acceptance Fee',
[16882]30        'bed_allocation': 'Bed Reservation',
[16894]31        'hostel_maintenance': 'Hostel Fee',
[16870]32        #'transfer': 'Transfer Fee',
33        #'gown': 'Gown Hire Fee',
34        'application': 'Application Fee',
35        #'app_balance': 'Application Fee Balance',
[17891]36        'transcript': 'Transcript Fee',
[17894]37        'transcript_student': 'Transcript Fee Students Copy',
38        'transcript_local': 'Transcript Fee Local Copy',
39        'transcript_inter': 'Transcript Fee International Copy',
[16870]40        #'late_registration': 'Late Course Registration Fee',
41        #'combi': 'Combi Payment',
[17328]42        'med_reg':'Medical Registration Fee',
[17698]43        'teaching_practice':'Teaching Practice Fee',
[17839]44        'ijmb_exam':'IJMB Examination Fees',
[17934]45        'union': 'Student Union Due',
[18046]46        'siwes': 'SIWES',
[18143]47        'trcn_nce': 'NCE TRCN Induction / License Fees',
48        'trcn_degree': 'DEGREE TRCN Induction / License Fees',
[16870]49        }
50
51    SELECTABLE_PAYMENT_CATEGORIES = {
52        'schoolfee': 'School Fee',
53        'clearance': 'Acceptance Fee',
[16890]54        #'bed_allocation': 'Bed Reservation (free of charge)',
[16894]55        'hostel_maintenance': 'Hostel Fee',
[17328]56        'med_reg':'Medical Registration Fee',
[17698]57        'teaching_practice':'Teaching Practice Fee',
[17839]58        'ijmb_exam':'IJMB Examination Fees',
[17894]59        #'transcript': 'Transcript Fee',
60        'transcript_student': 'Transcript Fee Students Copy',
61        'transcript_local': 'Transcript Fee Local Copy',
62        'transcript_inter': 'Transcript Fee International Copy',
[18046]63        'siwes': 'SIWES',
[17935]64        #'union': 'Student Union Due',
[18143]65        'trcn_nce': 'NCE TRCN Induction / License Fees',
66        'trcn_degree': 'DEGREE TRCN Induction / License Fees',
[16870]67        }
68
69    def selectable_payment_categories(self, student):
70        return self.SELECTABLE_PAYMENT_CATEGORIES
71
72    PREVIOUS_PAYMENT_CATEGORIES = deepcopy(SELECTABLE_PAYMENT_CATEGORIES)
73
[17598]74    DISABLE_PAYMENT_GROUP_DICT = {
75        'sf_all':    'School Fee - All',
76        'sf_ugft':   'School Fee - Undergraduate Full-Time',
77        }
78
[16953]79    COURSE_CATEGORY_DICT = {
80        'C':'Core Course (C)',
81        'R':'Required Courses (R)',
82        'E':'Elective Courses (E)',
83        }
[17056]84       
85    STUDY_MODES_DICT = {
[17129]86        'ug_ft': 'Undergraduate Full-Time',
[17204]87        'ug_pt': 'Undergraduate Part-Time',
[17056]88        'found': 'Foundation',
[17116]89        'dp_ft': 'Full-Time Diploma Programmes',
90        'dp_pt': 'Part-Time Diploma Programmes',
[17128]91        'de_ft': 'Direct Entry Full-Time Programmes',
[17347]92        'nce_ft': 'NCE Full-Time',
93        'nce_pt': 'NCE Part-Time',
[17949]94        'pde': 'Professional Diploma in Education Programmes',
[17952]95        'trc': 'TRCN Programmes',
[17056]96        }
[16953]97
[17062]98    APP_CATS_DICT = {
[17124]99        'basic': 'UAS, PUTME, PCE, PRENCE',
100        'basic_de': 'UAS, PUTME, PUDE, PCE, PRENCE',
[17062]101        'no': 'No Application',
[17278]102        'pre': 'Pre-Degree Programmes',
103        'jupeb': 'JUPEB Pre-Degree (Foundation) Programmes',
104        'ijmb': 'IJMB Foundation School Programmes',
[17115]105        'dp_ft': 'Full-Time Diploma Programmes',
106        'dp_pt': 'Part-Time Diploma Programmes',
[17204]107        'ug_pt': 'Undergraduate Part-Time Programmes',
[17506]108        'df': 'Digital Forensic for Professionals and Academia',
[17554]109        'law': 'Certificate in Law Programme',
[17949]110        'pde': 'Professional Diploma in Education Programmes',
[17952]111        'trcdeg': 'TRCN Degree Programmes',
112        'trcnce': 'TRCN NCE Programmes',
[17062]113        }
114
[17304]115    SPECIAL_HANDLING_DICT = {
116        'regular': 'Regular Hostel',
117        'blocked': 'Blocked Hostel',
118        'oyibu': 'Owa-Oyibu Campus Hostel',
119        'alero': 'Owa-Alero Campus Hostel',
120        }
Note: See TracBrowser for help on using the repository browser.