Last change
on this file since 1244 was
1240,
checked in by joachim, 19 years ago
|
added
|
-
Property svn:keywords set to
Id
|
File size:
472 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 1240 2007-01-08 17:04:02Z joachim $ |
---|
11 | """ |
---|
12 | return SchoolFee |
---|
13 | """ |
---|
14 | |
---|
15 | fee1 = ("ART", |
---|
16 | "SSC", |
---|
17 | "LAW", |
---|
18 | "EDU", |
---|
19 | ) |
---|
20 | fee_1_data = ("22200","Schoolfee for 2006/2007 Session") |
---|
21 | fee_2_data = ("23700","Schoolfee for 2006/2007 Session") |
---|
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.