source: WAeUP_SRP/fceokene/waeup_custom/getSchoolFee.py @ 3567

Last change on this file since 3567 was 3073, checked in by Henrik Bettermann, 17 years ago

add school fee for repeaters (= spillover)

File size: 1.5 KB
RevLine 
[2644]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 = {}
[2836]21if str(brain.level) == '100' and brain.review_state == 'cleared_and_validated':
[2644]22    if brain.department in ARTS:
23        d['all'] = 11520
[2646]24    else:
[2644]25        d['all'] = 11995
[3050]26elif str(brain.level) == '000' and brain.review_state == 'cleared_and_validated':
27    if brain.department in ARTS:
28        d['all'] = 14400
29    else:
[3073]30        d['all'] = 14900
[2836]31elif str(brain.level) == '100' and brain.review_state == 'returning':
[2644]32    if brain.department in ARTS:
[2646]33        d['all'] = 10570
34    else:
[2644]35        d['all'] = 11045
[3073]36elif str(brain.level) in ('200','210','220'):
[2644]37    if brain.department in ARTS:
38        d['all'] = 10570
[2646]39    else:
40        d['all'] = 11045
[3073]41# repeaters = spillover
42elif str(brain.level) in ('300','310','320'):
43    if brain.department in ARTS:
44        d['all'] = 8670
45    else:
46        d['all'] = 9145
[2646]47else:
48    d['all'] = 0
49
50
[2644]51next_info = context.getNextInfo(brain)
52next_session_str = next_info['next_session_str']
[2913]53d['next_session_id'] = next_info['next_session_id']
[2644]54d['description'] = "School Fee for Session %s" % next_session_str
[2646]55
[2644]56return d
57
Note: See TracBrowser for help on using the repository browser.