source: WAeUP_SRP/trunk/skins/waeup_futminna/getSchoolFee.py @ 5606

Last change on this file since 5606 was 5590, checked in by Henrik Bettermann, 14 years ago

Do not charge late registration fee at FUTMinna.

File size: 1.4 KB
Line 
1## Script (Python) "getSchoolFee"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=brain=None
8##title=
9##
10# $Id: getSchoolFee.py 2534 2007-11-05 06:37:12Z henrik $
11"""
12return SchoolFee
13"""
14
15late_registration_fee = 0
16
17d = {}
18
19if brain.mode.endswith('_ft'):
20    # fresh remedial
21    if str(brain.level) == '000' and brain.review_state == 'cleared_and_validated':
22        if brain.entry_mode == 'rmd_ft':
23            d['all'] = 80200
24        else:
25            d['all'] = 74200
26           
27    # fresh
28    elif brain.review_state == 'cleared_and_validated':
29        if brain.mode == 'jm_ft':
30            d['all'] = 72700 + late_registration_fee   
31        elif brain.lga == 'foreigner':
32            d['all'] = 131500 + late_registration_fee
33        else:
34            d['all'] = 41500 + late_registration_fee
35    # returning
36    elif brain.review_state == 'returning':
37        if brain.mode == 'jm_ft':
38            d['all'] = 32500 + late_registration_fee
39        elif brain.lga == 'foreigner':
40            d['all'] = 109500 + late_registration_fee
41        else:
42            d['all'] = 19500 + late_registration_fee
43    else:
44        d['all'] = 0
45else:
46    d['all'] = 0
47
48
49next_info = context.getNextInfo(brain)
50next_session_str = next_info['next_session_str']
51d['next_session_id'] = next_info['next_session_id']
52d['description'] = "School Fee for Session %s" % next_session_str
53
54return d
Note: See TracBrowser for help on using the repository browser.