Last change
on this file since 5021 was
5021,
checked in by Henrik Bettermann, 15 years ago
|
implement hardcoded late registratiion fee for returning students
|
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 | """ |
---|
12 | return SchoolFee |
---|
13 | """ |
---|
14 | |
---|
15 | late_registration_fee = 10000 |
---|
16 | |
---|
17 | d = {} |
---|
18 | |
---|
19 | if 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 |
---|
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 |
---|
45 | else: |
---|
46 | d['all'] = 0 |
---|
47 | |
---|
48 | |
---|
49 | next_info = context.getNextInfo(brain) |
---|
50 | next_session_str = next_info['next_session_str'] |
---|
51 | d['next_session_id'] = next_info['next_session_id'] |
---|
52 | d['description'] = "School Fee for Session %s" % next_session_str |
---|
53 | |
---|
54 | return d |
---|
55 | |
---|
Note: See
TracBrowser for help on using the repository browser.