source: WAeUP_SRP/trunk/skins/waeup_student/getAccommodationInfo.py @ 1181

Last change on this file since 1181 was 1181, checked in by Henrik Bettermann, 18 years ago

level >= 400

  • Property svn:keywords set to Id
File size: 3.4 KB
Line 
1## Script (Python) "getAccommodationInfo"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student_id=None
8##title=
9##
10# $Id: getAccommodationInfo.py 1181 2007-01-02 22:35:34Z henrik $
11"""
12return Info about the current Student
13"""
14import logging
15logger = logging.getLogger('Student.Accommodation.Info')
16import DateTime
17
18request = context.REQUEST
19mtool = context.portal_membership
20wf = context.portal_workflow
21member = mtool.getAuthenticatedMember()
22member_id = str(member)
23path_info = request.get('PATH_INFO').split('/')
24
25if mtool.isAnonymousUser():
26    return None
27info = {}
28if student_id is None:
29    requested_id = context.getStudentId()
30    if requested_id and not context.isStaff() and member_id != requested_id:
31        logger.info('"%s", "tried to access", "%s"' % (member_id,requested_id))
32        return None
33    elif context.isStaff():
34        student_id = requested_id
35    else:
36        student_id = member_id
37res = context.students_catalog(id=student_id)
38if len(res) != 1:
39    logger.info('"%s","not found in students_catalog"')
40    return None
41
42ekehuan_certificates = ('BARTAPG',
43                        'BARTAPM',
44                        'BARTCER',
45                        'BARTFAA',
46                        'BARTFAP',
47                        'BARTSCP',
48                        'BARTTXT',
49                        'BARTMAS',
50                        'BARTTHR',
51                        )
52pti_certificates = ('BENGIEP',
53                    'BENGGCPP',
54                    'BENGEEP',
55                    'BENGGEP',
56                    'BENGPEP',
57                    'BENGMEP',
58                    )
59s_brain = res[0]
60students_object = context.portal_url.getPortalObject().campus.students
61res = context.results_import(matric_no = s_brain.matric_no)
62student = getattr(students_object, student_id)
63info['id'] = student_id
64info['student'] = student
65review_state = info['review_state'] = wf.getInfoFor(student,'review_state',None)
66booking_allowed = False
67if review_state in ('returning','school_fee_paid','courses_registered', 'courses_validated',):
68    res = context.results_import(matric_no = s_brain.matric_no)
69    if res:
70        booking_allowed = res[0].Verdict in ("SUCCESSFUL STUDENT",
71                                             "STUDENT WITH CARRYOVER COURSES",)
72elif review_state in ('cleared_and_validated',):
73    booking_allowed = True
74info['booking_allowed'] = booking_allowed
75if not booking_allowed:
76    return info
77acco_id = 'accommodation_2006'
78acco = getattr(student,acco_id,None)
79info['acco'] = acco
80info['acco_id'] = acco_id
81bt = 're'
82if acco is not None:
83    info['acco_doc'] = acco.getContent()
84    info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None)
85d = {}
86if review_state == "cleared_and_validated":
87    bt = 'fr'
88elif int(s_brain.level) < 600:
89    bt = 're'
90else:
91    res = context.portal_catalog(portal_type = "Certificate", id = s_brain.course)
92    if res:
93        c_brain = res[0]
94        certificate = s_brain.getObject().getContent()
95        if int(s_brain.level) +100 == int(certificate.end_level):
96            bt = "fi"
97d['sex'] = 'male'
98if s_brain.sex:
99    d['sex'] = 'female'
100if s_brain.course in ekehuan_certificates:
101    bt += "_ekenhuan"
102elif s_brain.course in pti_certificates:
103    bt += "_pti"
104elif s_brain.faculty in ('MED') and int(s_brain.level) >= 400:
105    bt += "_med"
106
107d['bt'] = bt
108#from Products.zdb import set_trace
109#set_trace()
110student_status = "%(sex)s_%(bt)s" % d
111info['student_status'] = student_status
112return info
Note: See TracBrowser for help on using the repository browser.