source: main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/utils/utils.py @ 14395

Last change on this file since 14395 was 14222, checked in by Henrik Bettermann, 8 years ago

Change fees.

Add acceptance fee to selectable fees.

  • Property svn:keywords set to Id
File size: 8.2 KB
RevLine 
[7569]1## $Id: utils.py 14222 2016-10-24 04:06:20Z 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"""
[8834]20from kofacustom.nigeria.utils.utils import NigeriaKofaUtils
[7569]21
[8834]22class CustomKofaUtils(NigeriaKofaUtils):
[7569]23    """A collection of methods subject to customization.
24    """
[7845]25
[13187]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 = {
33        }
[9361]34
35    APP_CATS_DICT = {
36        'basic': 'Basic',
[10133]37        'ndft': 'National Diploma Full-Time Programmes',
38        'ndpt': 'National Diploma Part-Time Programmes',
[13278]39        'ndwe': 'National Diploma Weekend Programmes',
[10133]40        'hndft': 'Higher National Diploma Full-Time Programmes',
41        'hndpt': 'Higher National Diploma Part-Time Programmes',
[13278]42        'hndwe': 'Higher National Diploma Weekend Programmes',
[10121]43        'pgd': 'Postgraduate Diploma Programmes',
[10133]44        'rmd': 'Remedial Programmes',
[10844]45        'no': 'no application',
[9361]46        }
47
48    STUDY_MODES_DICT = {
[10133]49        'nd_ft': 'National Diploma Full-Time',
50        'nd_pt': 'National Diploma Part-Time',
[13278]51        'nd_we': 'National Diploma Weekend',
[10133]52        'hnd_ft': 'Higher National Diploma Full-Time',
53        'hnd_pt': 'Higher National Diploma Part-Time',
[13278]54        'hnd_we': 'Higher National Diploma Weekend',
[10133]55        'pgd_ft': 'Postgraduate Diploma Full-Time',
56        'pgd_pt': 'Postgraduate Diploma Part-Time',
[10778]57        'prend': 'Pre-ND',
[10133]58        'rmd': 'Remedial',
[9724]59        }
60
61    PAYMENT_CATEGORIES = {
[14222]62        'clearance': 'Acceptance',
[9724]63        'schoolfee': 'School Fee',
[13653]64        'carryover1': 'One Carry-Over',
65        'carryover2': 'Two Carry-Overs',
66        'carryover3': 'Three Carry-Overs',
[11922]67        'bed_allocation': 'Bed Allocation',
68        'hostel_maintenance': 'Hostel Maintenance',
69        'application': 'Application',
[11629]70        'certificate': 'ND Certificate',
71        'hnd_certificate': 'HND Certificate',
[11683]72        'pgd_certificate': 'PGD Certificate',
[11629]73        'state_result': 'ND Statement of Result',
74        'hnd_state_result': 'HND Statement of Result',
[11683]75        'pgd_state_result': 'PGD Statement of Result',
[11629]76        'transcript_local': 'ND Transcript (local)',
77        'hnd_transcript_local': 'HND Transcript (local)',
[11758]78        'pgd_transcript_local': 'PGD Transcript (local)',
[11629]79        'transcript_foreign': 'ND Transcript (foreign)',
80        'hnd_transcript_foreign': 'HND Transcript (foreign)',
[11758]81        'pgd_transcript_foreign': 'PGD Transcript (foreign)',
[10734]82        'ver_result': 'Verification of Result',
83        'change_course': 'Change of Course',
84        'change_inst': 'Change of Institute',
85        'jamb_reject': 'JAMB Rejection Form',
86        'cert_of_cert': 'Certification of Certificate',
87        'ref_let': 'Recommendation/Reference Letter',
88        'proc_cert': 'Processing of Certificate by Proxy',
[11629]89        'loss_idcard': 'Loss of ID Card (student)',
90        'staff_loss_idcard': 'Loss of ID Card (staff)',
[10734]91        'loss_examcard': 'Loss of Exam Card',
92        'loss_result': 'Loss of Result',
93        'loss_receipt': 'Loss of Receipt',
94        'loss_clearance': 'Loss of Clearance',
[11629]95        'conv_brochure': 'ND Convocation Brochure',
96        'hnd_conv_brochure': 'HND Convocation Brochure',
[11683]97        'pgd_conv_brochure': 'PGD Convocation Brochure',
[11922]98        'log_book': 'Log Book',
[11758]99        'jamb_regularization': 'Jamb Regularization',
[11922]100        'utme_registration': 'UTME Registration',
101        'utme_cbt': 'UTME CBT',
[14218]102        'nysc_id_card': 'NYSC ID Card',
103        'ijmb_result':'IJMB Result',
[9737]104        }
105
106    SELECTABLE_PAYMENT_CATEGORIES = {
[14222]107        'clearance': 'Acceptance',
[9737]108        'schoolfee': 'School Fee',
[13653]109        'carryover1': 'One Carry-Over',
110        'carryover2': 'Two Carry-Overs',
111        'carryover3': 'Three Carry-Overs',
[11922]112        'hostel_maintenance': 'Hostel Maintenance',
[11629]113        'certificate': 'ND Certificate',
114        'hnd_certificate': 'HND Certificate',
[11684]115        'pgd_certificate': 'PGD Certificate',
[11629]116        'state_result': 'ND Statement of Result',
117        'hnd_state_result': 'HND Statement of Result',
[11684]118        'pgd_state_result': 'PGD Statement of Result',
[11629]119        'transcript_local': 'ND Transcript (local)',
120        'hnd_transcript_local': 'HND Transcript (local)',
[11758]121        'pgd_transcript_local': 'PGD Transcript (local)',
[11629]122        'transcript_foreign': 'ND Transcript (foreign)',
123        'hnd_transcript_foreign': 'HND Transcript (foreign)',
[11758]124        'pgd_transcript_foreign': 'PGD Transcript (foreign)',
[10734]125        'ver_result': 'Verification of Result',
126        'change_course': 'Change of Course',
127        'change_inst': 'Change of Institute',
128        'jamb_reject': 'JAMB Rejection Form',
129        'cert_of_cert': 'Certification of Certificate',
130        'ref_let': 'Recommendation/Reference Letter',
131        'proc_cert': 'Processing of Certificate by Proxy',
[11629]132        'loss_idcard': 'Loss of ID Card (student)',
133        'staff_loss_idcard': 'Loss of ID Card (staff)',
[10734]134        'loss_examcard': 'Loss of Exam Card',
135        'loss_result': 'Loss of Result',
136        'loss_receipt': 'Loss of Receipt',
137        'loss_clearance': 'Loss of Clearance',
[11629]138        'conv_brochure': 'ND Convocation Brochure',
139        'hnd_conv_brochure': 'HND Convocation Brochure',
[11684]140        'pgd_conv_brochure': 'PGD Convocation Brochure',
[11922]141        'log_book': 'Log Book',
[11758]142        'jamb_regularization': 'Jamb Regularization',
[11922]143        'utme_registration': 'UTME Registration',
144        'utme_cbt': 'UTME CBT',
[14218]145        'nysc_id_card': 'NYSC ID Card',
146        'ijmb_result':'IJMB Result',
[10820]147        }
148
[11453]149    DISABLE_PAYMENT_GROUP_DICT = {
150        'sf_all': 'School Fee - All Students',
151        'sf_non_pg': 'School Fee - Non-PG Students',
152        }
153
[10820]154    SPECIAL_HANDLING_DICT = {
155        'regular': 'Regular Hostel',
156        'blocked': 'Blocked Hostel',
157        'pg': 'Postgraduate Hostel',
[11965]158        'iot': 'IOT Hostel'
[10844]159        }
160
161    SPECIAL_APP_DICT = {
[11663]162        'certificate': 'ND Certificate',
163        'hnd_certificate': 'HND Certificate',
[11685]164        'pgd_certificate': 'PGD Certificate',
[11663]165        'state_result': 'ND Statement of Result',
166        'hnd_state_result': 'HND Statement of Result',
[11685]167        'pgd_state_result': 'PGD Statement of Result',
[11663]168        'transcript_local': 'ND Transcript (local)',
169        'hnd_transcript_local': 'HND Transcript (local)',
[11758]170        'pgd_transcript_local': 'PGD Transcript (local)',
[11663]171        'transcript_foreign': 'ND Transcript (foreign)',
172        'hnd_transcript_foreign': 'HND Transcript (foreign)',
[11758]173        'pgd_transcript_foreign': 'PGD Transcript (foreign)',
[10844]174        'ver_result': 'Verification of Result Payment',
175        'change_course': 'Change of Course Payment',
176        'change_inst': 'Change of Institute Payment',
177        'jamb_reject': 'JAMB Rejection Form Payment',
178        'cert_of_cert': 'Certification of Certificate Payment',
179        'ref_let': 'Recommendation/Reference Letter Payment',
180        'proc_cert': 'Processing of Certificate by Proxy Payment',
[11663]181        'loss_idcard': 'Loss of ID Card (student)',
182        'staff_loss_idcard': 'Loss of ID Card (staff)',
[10844]183        'loss_examcard': 'Loss of Exam Card Payment',
184        'loss_result': 'Loss of Result Payment',
185        'loss_receipt': 'Loss of Receipt Payment',
186        'loss_clearance': 'Loss of Clearance Payment',
[11663]187        'conv_brochure': 'ND Convocation Brochure',
188        'hnd_conv_brochure': 'HND Convocation Brochure',
[11685]189        'pgd_conv_brochure': 'PGD Convocation Brochure',
[11922]190        'log_book': 'Log Book',
[11758]191        'jamb_regularization': 'Jamb Regularization',
[11922]192        'utme_registration': 'UTME Registration',
193        'utme_cbt': 'UTME CBT',
[14218]194        'nysc_id_card': 'NYSC ID Card',
195        'ijmb_result':'IJMB Result',
[9361]196        }
Note: See TracBrowser for help on using the repository browser.