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

Last change on this file since 10785 was 10778, checked in by Henrik Bettermann, 12 years ago

Add study mode prend.

  • Property svn:keywords set to Id
File size: 4.0 KB
RevLine 
[7569]1## $Id: utils.py 10778 2013-11-21 07:13:05Z 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
26    PREFERRED_LANGUAGES_DICT = {
27        }
[9361]28
29    APP_CATS_DICT = {
30        'basic': 'Basic',
[10133]31        'ndft': 'National Diploma Full-Time Programmes',
32        'ndpt': 'National Diploma Part-Time Programmes',
33        'hndft': 'Higher National Diploma Full-Time Programmes',
34        'hndpt': 'Higher National Diploma Part-Time Programmes',
[10121]35        'pgd': 'Postgraduate Diploma Programmes',
[10133]36        'rmd': 'Remedial Programmes',
[9361]37        }
38
39    STUDY_MODES_DICT = {
[10133]40        'nd_ft': 'National Diploma Full-Time',
41        'nd_pt': 'National Diploma Part-Time',
42        'hnd_ft': 'Higher National Diploma Full-Time',
43        'hnd_pt': 'Higher National Diploma Part-Time',
44        'pgd_ft': 'Postgraduate Diploma Full-Time',
45        'pgd_pt': 'Postgraduate Diploma Part-Time',
[10778]46        'prend': 'Pre-ND',
[10133]47        'rmd': 'Remedial',
[9724]48        }
49
50    PAYMENT_CATEGORIES = {
51        'schoolfee': 'School Fee',
[9737]52        'carryover1': '1 CarryOver',
53        'carryover2': '2 CarryOvers',
54        'carryover3': '3 CarryOvers',
[9724]55        'clearance': 'Acceptance Fee',
56        'bed_allocation': 'Bed Allocation Fee',
57        'hostel_maintenance': 'Hostel Maintenance Fee',
[10734]58        'application': 'Application Fee',
59        'certificate': 'Certificate',
60        'state_result': 'Statement of Result',
61        'transcript_local': 'Transcript (local)',
62        'transcript_foreign': 'Transcript (foreign)',
63        'ver_result': 'Verification of Result',
64        'change_course': 'Change of Course',
65        'change_inst': 'Change of Institute',
66        'jamb_reject': 'JAMB Rejection Form',
67        'cert_of_cert': 'Certification of Certificate',
68        'ref_let': 'Recommendation/Reference Letter',
69        'proc_cert': 'Processing of Certificate by Proxy',
70        'loss_idcard': 'Loss of ID Card',
71        'loss_examcard': 'Loss of Exam Card',
72        'loss_result': 'Loss of Result',
73        'loss_receipt': 'Loss of Receipt',
74        'loss_clearance': 'Loss of Clearance',
75        'conv_brochure': 'Convocation Brochure',
[9737]76        }
77
78    SELECTABLE_PAYMENT_CATEGORIES = {
79        'schoolfee': 'School Fee',
80        'carryover1': 'One CarryOver',
81        'carryover2': 'Two CarryOvers',
82        'carryover3': 'Three CarryOvers',
83        'hostel_maintenance': 'Hostel Maintenance Fee',
[10734]84        'certificate': 'Certificate',
85        'state_result': 'Statement of Result',
86        'transcript_local': 'Transcript (local)',
87        'transcript_foreign': 'Transcript (foreign)',
88        'ver_result': 'Verification of Result',
89        'change_course': 'Change of Course',
90        'change_inst': 'Change of Institute',
91        'jamb_reject': 'JAMB Rejection Form',
92        'cert_of_cert': 'Certification of Certificate',
93        'ref_let': 'Recommendation/Reference Letter',
94        'proc_cert': 'Processing of Certificate by Proxy',
95        'loss_idcard': 'Loss of ID Card',
96        'loss_examcard': 'Loss of Exam Card',
97        'loss_result': 'Loss of Result',
98        'loss_receipt': 'Loss of Receipt',
99        'loss_clearance': 'Loss of Clearance',
100        'conv_brochure': 'Convocation Brochure',
[9361]101        }
Note: See TracBrowser for help on using the repository browser.