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

Last change on this file since 5061 was 5061, checked in by Henrik Bettermann, 15 years ago

add categorization of foreign students

  • Property svn:keywords set to Id
File size: 2.8 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:getSchoolFeePrefix.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]
28
29FRNART =    (
30            "BADTSW",
31            "BAEDEDO",
32            "BAEDEL",
33            "BAEDENG",
34            "BAEDFAA",
35            "BAEDFRC",
36            "BAEDHIS",
37            "BBEDSW",
38            "BECOSW",
39            "BEDADT",
40            "BEMGTSW",
41            "BENLSW",
42            "BGEOSW",
43            "BHISSW",
44            "BPOLSW",
45            "BSCEDAC",
46            "BSCEDAP",
47            "BSCEDB",
48            "BSCEDBE",
49            "BSCEDE",
50            "BSCEDECO",
51            "BSCEDES",
52            "BSCEDG",
53            "BSCEDGEO",
54            "BSCEDGR",
55            "BSCEDPOL",
56            "BSCEDPS",
57            "BSCEDSE",
58            "BSCEDSOC",
59            "BSCEDSS",
60            "BSSTSW",
61            "DAED",
62            )
63
64FRNSCI = (
65            "BAGRSW",
66            "BBIOSW",
67            "BCHESW",
68            "BCSCSW",
69            "BHECSW",
70            "BHEDSW",
71            "BISCSW",
72            "BITESW",
73            "BSCEDAG",
74            "BSCEDBC",
75            "BSCEDC",
76            "BSCEDCO",
77            "BSCEDEE",
78            "BSCEDEM",
79            "BSCEDEV",
80            "BSCEDHE",
81            "BSCEDHK",
82            "BSCEDHM",
83            "BSCEDIS",
84            "BSCEDM",
85            "BSCEDME",
86            "BSCEDP",
87            "BSCEDPE",
88            "BSCEDTE",
89            "BSCEDWB",
90            "DHT",
91            )
92
93if student_record.lga == 'foreigner':
94    if student_record.course in FRNART:
95         prefix == 'FRNART'
96    elif student_record.course in FRNSCI:
97         prefix == 'FRNSCI'
98    else:
99        logger.info('%s, foreign student course %s not categorized' % (student_id,student_record.faculty))
100        prefix = "--"       
101        return prefix 
102    if student_record.review_state == 'cleared_and_validated':
103        prefix = prefix + 'NEW'   
104    return prefix     
105
106res = context.certificates_catalog(code = student_record.course)
107if not res:
108    logger.info('%s, certificate %s not found' % (student_id,student_record.course))
109    prefix = "--"
110else:
111    prefix = res[0].school_fee_code
112    if not prefix or prefix == 'none':
113        prefix = res[0].faculty
114    if student_record.review_state == 'cleared_and_validated':
115        prefix = prefix + 'NEW'
116return prefix
Note: See TracBrowser for help on using the repository browser.