source: WAeUP_SRP/trunk/skins/waeup_epayment/getSchoolFeePrefix.py @ 3687

Last change on this file since 3687 was 3329, checked in by Henrik Bettermann, 17 years ago

enable school fee payment for 07 new students

File size: 1.1 KB
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"""
12return the Prefix for Schoolfee
13"""
14
15if context.portal_membership.isAnonymousUser():
16    return None
17
18try:
19    from Products.zdb import set_trace
20except:
21    def set_trace():
22        pass
23import logging
24logger = logging.getLogger('Skins.getSchoolFeePrefix')
25
26student_id = context.getStudentId()
27student_record = context.students_catalog(id=student_id)[0]
28res = context.portal_catalog(portal_type="Certificate",
29                                     id = student_record.course)
30
31
32if not res:
33    logger.info('%s, certificate %s not found' % (student_id,course))
34    prefix = "--"
35else:
36    prefix = res[0].getObject().getContent().school_fee_code
37    if not prefix or prefix == 'none':
38        prefix = res[0].getPath().split('/')[-4]
39    if student_record.review_state == 'cleared_and_validated':
40        prefix = prefix + 'NEW'
41return prefix
Note: See TracBrowser for help on using the repository browser.