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

Last change on this file since 6919 was 6911, checked in by Henrik Bettermann, 13 years ago

Reduce fee for some students.

Disable also acceptance fee payment.

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