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

Last change on this file since 5473 was 5419, checked in by Henrik Bettermann, 14 years ago

increase fees for sandwich students by 1000 Nairas

reomve verdict C mode (see r3802)

File size: 4.1 KB
RevLine 
[3759]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
[4536]16ARTS = ('CRS','ISS','HIS','MUS','ECO','GEO','POL','SOS','CCA','ECU','THA','GED','GSE','PES','SPC','ENG ','FRE','ARB','HAU','IGB','YOR')
[3759]17
[4536]18# SCS = ('BIO','CHE','HED','MAT','PED','PHY ','CSC','ISC','PHE','AGE','BED','HEC','TED','FAA')
[3759]19
20d = {}
21
22if not brain.mode.endswith('_sw'):
[3760]23    # PRENCE
[3759]24    if str(brain.level) == '000' and brain.review_state == 'cleared_and_validated':
25        if brain.department in ARTS:
[4551]26            d['all'] = 14900
[3759]27        else:
[4551]28            d['all'] = 15400
[3760]29    # all repeaters
[3802]30    #elif brain.verdict == 'C':
31    #    if brain.department in ARTS:
[4551]32    #        d['all'] = 9170
[3802]33    #    else:
[4551]34    #        d['all'] = 9645
[3760]35    # NCE I fresh
[3759]36    elif str(brain.level) == '100' and brain.review_state == 'cleared_and_validated':
37        if brain.department in ARTS:
[4551]38            d['all'] = 12020
[3759]39        else:
[4551]40            d['all'] = 12495
[3760]41    # NCE II
42    elif str(brain.level) in ('100','110','120') and brain.review_state == 'returning':
[3759]43        if brain.department in ARTS:
[4551]44            d['all'] = 11070
[3759]45        else:
[4551]46            d['all'] = 11545
[3760]47    # NCE III
[3759]48    elif str(brain.level) in ('200','210','220'):
49        if brain.department in ARTS:
[4551]50            d['all'] = 11070
[3759]51        else:
[4551]52            d['all'] = 11545
[5374]53    # NCE III repeater
54    elif str(brain.level) in ('300','310','320') and brain.verdict == 'O':
55        if brain.department in ARTS:
56            d['all'] = 5535
57        else:
58            d['all'] = 5773         
[3761]59    # NCE III spillover
60    elif str(brain.level) in ('300','310','320') and brain.verdict == 'B':
61        if brain.department in ARTS:
[4551]62            d['all'] = 9170
[3761]63        else:
[4862]64            d['all'] = 9645       
65    # NCE III second spillover
66    elif str(brain.level) in ('400','410','420') and brain.verdict == 'B':
67        if brain.department in ARTS:
68            d['all'] = 9170
69        else:
70            d['all'] = 9645                   
[3759]71    else:
[3760]72        d['all'] = 0   
73
[3759]74else:
75    if str(brain.level) == '100' and brain.review_state == 'cleared_and_validated':
76        if brain.department in ARTS:
[5419]77            d['all'] = 21900
[3759]78        else:
[5419]79            d['all'] = 22400
[3760]80    # all repeaters
[5419]81    #elif brain.verdict == 'C':
82    #    if brain.department in ARTS:
83    #        d['all'] = 16900
84    #    else:
85    #        d['all'] = 17400
[3760]86    # NCE II           
87    elif str(brain.level) in ('100','110','120') and brain.review_state == 'returning':
88        if brain.department in ARTS:
[5419]89            d['all'] = 18400
[3759]90        else:
[5419]91            d['all'] = 18900
[3760]92    # NCE III
[3759]93    elif str(brain.level) in ('200','210','220'):
94        if brain.department in ARTS:
[5419]95            d['all'] = 20400
[3759]96        else:
[5419]97            d['all'] = 20900
[3760]98    # NCE IV
[3759]99    elif str(brain.level) in ('300','310','320'):
100        if brain.department in ARTS:
[5419]101            d['all'] = 18400
[3759]102        else:
[5419]103            d['all'] = 18900
[3760]104    # NCE V
[3759]105    elif str(brain.level) in ('400','410','420'):
106        if brain.department in ARTS:
[5419]107            d['all'] = 18400
[3759]108        else:
[5419]109            d['all'] = 18900
[3761]110    # NCE V spillover
111    elif str(brain.level) in ('500','510','520') and brain.verdict == 'B':
112        if brain.department in ARTS:
[5419]113            d['all'] = 16900
[3761]114        else:
[5419]115            d['all'] = 17400         
[4862]116    # NCE V second spillover
117    elif str(brain.level) in ('600','610','620') and brain.verdict == 'B':
118        if brain.department in ARTS:
[5419]119            d['all'] = 16900
[4862]120        else:
[5419]121            d['all'] = 17400                   
[3759]122    else:
[3761]123        d['all'] = 0               
[3759]124
125
[3761]126
[3759]127next_info = context.getNextInfo(brain)
128next_session_str = next_info['next_session_str']
129d['next_session_id'] = next_info['next_session_id']
130d['description'] = "School Fee for Session %s" % next_session_str
131
132return d
Note: See TracBrowser for help on using the repository browser.