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

Last change on this file since 3879 was 3846, checked in by Henrik Bettermann, 16 years ago

try to resolve FUTMinna #35

File size: 1.1 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
15
16d = {}
17
18if brain.mode.endswith('_ft'):
19    # fresh remedial
20    if str(brain.level) == '000' and brain.review_state == 'cleared_and_validated':
21        if brain.entry_mode in ('rm_ft'):
22            d['all'] = 74200
23        else:
24            d['all'] = 80200
25    # fresh
26    elif brain.review_state == 'cleared_and_validated':
27        if brain.lga == 'foreigner':
28            d['all'] = 131500 + 5000
29        else:
30            d['all'] = 41500 + 5000
31    # returning
32    elif brain.review_state == 'returning':
33        if brain.lga == 'foreigner':
34            d['all'] = 109500
35        else:
36            d['all'] = 19500 + 5000
37    else:
38        d['all'] = 0
39else:
40    d['all'] = 0
41
42
43next_info = context.getNextInfo(brain)
44next_session_str = next_info['next_session_str']
45d['next_session_id'] = next_info['next_session_id']
46d['description'] = "School Fee for Session %s" % next_session_str
47
48return d
49
Note: See TracBrowser for help on using the repository browser.