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, 2 days ago

New fees.

  • Property svn:keywords set to Id
File size: 4.6 KB
Line 
1## $Id: utils.py 18143 2025-07-30 09:52:58Z 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    PAYMENT_CATEGORIES = {
28        'schoolfee': 'School Fee',
29        'clearance': 'Acceptance Fee',
30        'bed_allocation': 'Bed Reservation',
31        'hostel_maintenance': 'Hostel Fee',
32        #'transfer': 'Transfer Fee',
33        #'gown': 'Gown Hire Fee',
34        'application': 'Application Fee',
35        #'app_balance': 'Application Fee Balance',
36        'transcript': 'Transcript Fee',
37        'transcript_student': 'Transcript Fee Students Copy',
38        'transcript_local': 'Transcript Fee Local Copy',
39        'transcript_inter': 'Transcript Fee International Copy',
40        #'late_registration': 'Late Course Registration Fee',
41        #'combi': 'Combi Payment',
42        'med_reg':'Medical Registration Fee',
43        'teaching_practice':'Teaching Practice Fee',
44        'ijmb_exam':'IJMB Examination Fees',
45        'union': 'Student Union Due',
46        'siwes': 'SIWES',
47        'trcn_nce': 'NCE TRCN Induction / License Fees',
48        'trcn_degree': 'DEGREE TRCN Induction / License Fees',
49        }
50
51    SELECTABLE_PAYMENT_CATEGORIES = {
52        'schoolfee': 'School Fee',
53        'clearance': 'Acceptance Fee',
54        #'bed_allocation': 'Bed Reservation (free of charge)',
55        'hostel_maintenance': 'Hostel Fee',
56        'med_reg':'Medical Registration Fee',
57        'teaching_practice':'Teaching Practice Fee',
58        'ijmb_exam':'IJMB Examination Fees',
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',
63        'siwes': 'SIWES',
64        #'union': 'Student Union Due',
65        'trcn_nce': 'NCE TRCN Induction / License Fees',
66        'trcn_degree': 'DEGREE TRCN Induction / License Fees',
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
74    DISABLE_PAYMENT_GROUP_DICT = {
75        'sf_all':    'School Fee - All',
76        'sf_ugft':   'School Fee - Undergraduate Full-Time',
77        }
78
79    COURSE_CATEGORY_DICT = {
80        'C':'Core Course (C)',
81        'R':'Required Courses (R)',
82        'E':'Elective Courses (E)',
83        }
84       
85    STUDY_MODES_DICT = {
86        'ug_ft': 'Undergraduate Full-Time',
87        'ug_pt': 'Undergraduate Part-Time',
88        'found': 'Foundation',
89        'dp_ft': 'Full-Time Diploma Programmes',
90        'dp_pt': 'Part-Time Diploma Programmes',
91        'de_ft': 'Direct Entry Full-Time Programmes',
92        'nce_ft': 'NCE Full-Time',
93        'nce_pt': 'NCE Part-Time',
94        'pde': 'Professional Diploma in Education Programmes',
95        'trc': 'TRCN Programmes',
96        }
97
98    APP_CATS_DICT = {
99        'basic': 'UAS, PUTME, PCE, PRENCE',
100        'basic_de': 'UAS, PUTME, PUDE, PCE, PRENCE',
101        'no': 'No Application',
102        'pre': 'Pre-Degree Programmes',
103        'jupeb': 'JUPEB Pre-Degree (Foundation) Programmes',
104        'ijmb': 'IJMB Foundation School Programmes',
105        'dp_ft': 'Full-Time Diploma Programmes',
106        'dp_pt': 'Part-Time Diploma Programmes',
107        'ug_pt': 'Undergraduate Part-Time Programmes',
108        'df': 'Digital Forensic for Professionals and Academia',
109        'law': 'Certificate in Law Programme',
110        'pde': 'Professional Diploma in Education Programmes',
111        'trcdeg': 'TRCN Degree Programmes',
112        'trcnce': 'TRCN NCE Programmes',
113        }
114
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.