source: WAeUP_SRP/trunk/skins/waeup_fceokene/getSchoolFee.py @ 3760

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

second trial to implement new school fee logic

File size: 2.9 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
16ARTS = ('CRS','ISS','HIS','MUS','ECO','GEO','POL','SOS','CCA','ECU','THA','GED','GSE','PES','SPC','ENG ','FRE','ARB','HAU','IGB','YOR','FAA')
17
18# SCS = ('BIO','CHE','HED','MAT','PED','PHY ','CSC','ISC','PHE','AGE','BED','HEC','TED')
19
20d = {}
21
22if not brain.mode.endswith('_sw'):
23    # PRENCE
24    if str(brain.level) == '000' and brain.review_state == 'cleared_and_validated':
25        if brain.department in ARTS:
26            d['all'] = 15900
27        else:
28            d['all'] = 16400
29    # all repeaters
30    if brain.verdict == 'C':
31        if brain.department in ARTS:
32            d['all'] = 10170
33        else:
34            d['all'] = 10645
35    # NCE I fresh
36    elif str(brain.level) == '100' and brain.review_state == 'cleared_and_validated':
37        if brain.department in ARTS:
38            d['all'] = 13020
39        else:
40            d['all'] = 13495
41    # NCE II
42    elif str(brain.level) in ('100','110','120') and brain.review_state == 'returning':
43        if brain.department in ARTS:
44            d['all'] = 12070
45        else:
46            d['all'] = 12545
47    # NCE III
48    elif str(brain.level) in ('200','210','220'):
49        if brain.department in ARTS:
50            d['all'] = 12070
51        else:
52            d['all'] = 12545
53    else:
54        d['all'] = 0   
55
56else:
57    if str(brain.level) == '100' and brain.review_state == 'cleared_and_validated':
58        if brain.department in ARTS:
59            d['all'] = 21900
60        else:
61            d['all'] = 22400
62    # all repeaters
63    if brain.verdict == 'C':
64        if brain.department in ARTS:
65            d['all'] = 16900
66        else:
67            d['all'] = 17400
68    # NCE II           
69    elif str(brain.level) in ('100','110','120') and brain.review_state == 'returning':
70        if brain.department in ARTS:
71            d['all'] = 18400
72        else:
73            d['all'] = 18900
74    # NCE III
75    elif str(brain.level) in ('200','210','220'):
76        if brain.department in ARTS:
77            d['all'] = 20400
78        else:
79            d['all'] = 20900
80    # NCE IV
81    elif str(brain.level) in ('300','310','320'):
82        if brain.department in ARTS:
83            d['all'] = 18400
84        else:
85            d['all'] = 18900
86    # NCE V
87    elif str(brain.level) in ('400','410','420'):
88        if brain.department in ARTS:
89            d['all'] = 18400
90        else:
91            d['all'] = 18900
92    else:
93        d['all'] = 0
94
95
96next_info = context.getNextInfo(brain)
97next_session_str = next_info['next_session_str']
98d['next_session_id'] = next_info['next_session_id']
99d['description'] = "School Fee for Session %s" % next_session_str
100
101return d
102
Note: See TracBrowser for help on using the repository browser.