Last change
on this file since 1867 was
1247,
checked in by Henrik Bettermann, 18 years ago
|
online payment beautified
|
-
Property svn:keywords set to
Id
|
File size:
474 bytes
|
Rev | Line | |
---|
[1240] | 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 | """ |
---|
| 12 | return SchoolFee |
---|
| 13 | """ |
---|
| 14 | |
---|
| 15 | fee1 = ("ART", |
---|
| 16 | "SSC", |
---|
| 17 | "LAW", |
---|
| 18 | "EDU", |
---|
| 19 | ) |
---|
[1247] | 20 | fee_1_data = ("22200","School Fee for Session 2006/2007") |
---|
| 21 | fee_2_data = ("23700","School Fee for Session 2006/2007") |
---|
[1240] | 22 | |
---|
| 23 | if faculty in fee1: |
---|
| 24 | return fee_1_data |
---|
| 25 | return fee_2_data |
---|
| 26 | |
---|
Note: See
TracBrowser for help on using the repository browser.