Last change
on this file since 17952 was
1596,
checked in by joachim, 18 years ago
|
merged changes from trunk to joachim-event-branch
|
-
Property svn:keywords set to
Id
|
File size:
899 bytes
|
Line | |
---|
1 | ## Script (Python) "getSchoolFeePrefix" |
---|
2 | ##bind container=container |
---|
3 | ##bind context=context |
---|
4 | ##bind namespace= |
---|
5 | ##bind script=script |
---|
6 | ##bind subpath=traverse_subpath |
---|
7 | ##parameters= |
---|
8 | ##title= |
---|
9 | ## |
---|
10 | # $Id:getMaintenancePrefix.py 486 2006-09-06 10:09:39Z joachim $ |
---|
11 | """ |
---|
12 | return the Prefix for Schoolfee |
---|
13 | """ |
---|
14 | |
---|
15 | if context.portal_membership.isAnonymousUser(): |
---|
16 | return None |
---|
17 | |
---|
18 | import logging |
---|
19 | logger = logging.getLogger('Skins.getSchoolFeePrefix') |
---|
20 | |
---|
21 | student_id = context.getStudentId() |
---|
22 | sbrain = context.students_catalog(id=student_id)[0] |
---|
23 | res = context.portal_catalog(portal_type="Certificate", |
---|
24 | id = sbrain.course) |
---|
25 | if not res: |
---|
26 | logger.info('%s, certificate %s not found' % (student_id,course)) |
---|
27 | prefix = "--" |
---|
28 | else: |
---|
29 | prefix = res[0].getObject().getContent().school_fee_code |
---|
30 | if not prefix or prefix == 'none': |
---|
31 | prefix = res[0].getPath().split('/')[-4] |
---|
32 | return prefix |
---|
Note: See
TracBrowser for help on using the repository browser.