source: WAeUP_SRP/trunk/skins/waeup_epayment/getSchoolFee.py @ 1372

Last change on this file since 1372 was 1247, checked in by Henrik Bettermann, 18 years ago

online payment beautified

  • Property svn:keywords set to Id
File size: 474 bytes
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=faculty=None
8##title=
9##
10# $Id: getSchoolFee.py 1247 2007-01-08 20:58:43Z henrik $
11"""
12return SchoolFee
13"""
14
15fee1 = ("ART",
16        "SSC",
17        "LAW",
18        "EDU",
19        )
20fee_1_data = ("22200","School Fee for Session 2006/2007")
21fee_2_data = ("23700","School Fee for Session 2006/2007")
22
23if faculty in fee1:
24    return fee_1_data
25return fee_2_data
26
Note: See TracBrowser for help on using the repository browser.