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

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

resolve futminna #44

File size: 1.3 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 == 'rmd_ft':
22            d['all'] = 80200
23        else:
24            d['all'] = 74200
25           
26    # fresh
27    elif brain.review_state == 'cleared_and_validated':
28        if brain.mode == 'jm_ft':
29            d['all'] = 72700   
30        elif brain.lga == 'foreigner':
31            d['all'] = 131500 + 5000
32        else:
33            d['all'] = 41500 + 5000
34    # returning
35    elif brain.review_state == 'returning':
36        if brain.mode == 'jm_ft':
37            d['all'] = 32500
38        elif brain.lga == 'foreigner':
39            d['all'] = 109500
40        else:
41            d['all'] = 19500 + 5000
42    else:
43        d['all'] = 0
44else:
45    d['all'] = 0
46
47
48next_info = context.getNextInfo(brain)
49next_session_str = next_info['next_session_str']
50d['next_session_id'] = next_info['next_session_id']
51d['description'] = "School Fee for Session %s" % next_session_str
52
53return d
54
Note: See TracBrowser for help on using the repository browser.