source: WAeUP_SRP/uniben/waeup_custom/getAccommodationInfo.py @ 3085

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

prepare hostel allocation in Benin

File size: 4.6 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 1726 2007-05-02 06:21:50Z henrik $
11"""
12return Info about the current Student
13"""
14import logging
15logger = logging.getLogger('Skins.getAccommodationInfo')
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
37student_record = context.students_catalog.getRecordByKey(student_id)
38if student_record is None:
39    logger.info('%s not found in students_catalog' % student_id)
40    return None
41
42ekehuan_certificates = ('BARTAPG',
43                        'BARTAPM',
44                        'BARTCER',
45                        'BARTFAA',
46                        'BARTFAP',
47                        'BARTSCP',
48                        'BARTTXT',
49                        'BARTMAS',
50                        'BARTTHR',
51                        )
52#pti_certificates = ('BENGIEP',
53#                    'BENGGCPP',
54#                    'BENGEEP',
55#                    'BENGGEP',
56#                    'BENGPEP',
57#                    'BENGMEP',
58#                    )
59
60
61new_states = ('cleared_and_validated',
62              'school_fee_paid',
63              'courses_registered',
64              'courses_validated',
65              )
66
67info['error'] = None
68info['matric_no']=student_record.matric_no
69info['jamb_reg_no']=student_record.jamb_reg_no
70info['name']=student_record.name
71info['email']=student_record.email
72info['level']=student_record.level
73info['verdict']=getattr(student_record,'verdict','')
74review_state = info['review_state'] = student_record.review_state
75
76info['session'] = session = context.getSessionId()
77
78students_object = context.portal_url.getPortalObject().campus.students
79student = getattr(students_object, student_id)
80info['student_id'] = student_id
81info['student'] = student
82
83booking_allowed = False
84
85new = student_record.entry_session == session[0]
86arrived = student_record.session == session[0]
87
88if new and arrived and student_record.review_state in new_states:
89    booking_allowed = True
90elif arrived:
91    dummy,on_probation = divmod(int(student_record.level),100)
92    if not on_probation:
93        booking_allowed = True
94elif int(student_record.session) == int(session[0]) - 1:
95    if student_record.verdict in ('A','B',):
96        booking_allowed = True
97   
98info['booking_allowed'] = booking_allowed
99if not booking_allowed:
100    info['acco'] = None
101#    return info
102
103acco_id = 'accommodation_' + session[0]
104acco = getattr(student,acco_id,None)
105info['acco'] = acco
106info['acco_id'] = acco_id
107bt = 're'
108info['maintenance_paid'] = False
109if acco is not None:
110    info['acco_doc'] = acco.getContent()
111    info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None)
112    info['maintenance_paid'] = info['acco_review_state'] == "maintenance_fee_paid"
113
114
115d = {}
116if new:
117    bt = 'fr'
118elif int(student_record.level) < int(student_record.end_level):
119    bt = 're'
120else:
121    bt = 'fi'
122# else:
123#     res = context.portal_catalog(portal_type = "Certificate", id = student_record.course)
124#     if res:
125#         c_brain = res[0]
126#         #from Products.zdb import set_trace; set_trace()
127#         certificate = c_brain.getObject().getContent()
128#         try:
129#             certlevel = int(certificate.end_level)
130#         except:
131#             info["error"] = '"no end_level for","%s"' % c_brain.getId
132#             return info
133#         try:
134#             studentlevel = int(student_record.level)
135#         except:
136#             info["error"] = '"no level for","%s"' % student_record.getId
137#             return info
138#         if studentlevel >= certlevel:
139#             bt = "fi"
140d['sex'] = 'male'
141if student_record.sex:
142    d['sex'] = 'female'
143if student_record.faculty in ('MED','DEN') and int(student_record.level) > 400:
144    bt += "_med"
145elif student_record.course in ekehuan_certificates:
146    bt += "_ekenhuan"
147#elif student_record.course in pti_certificates:
148#    bt += "_pti"
149
150
151info['sex']=d['sex']
152
153
154d['bt'] = bt
155student_status = "%(sex)s_%(bt)s" % d
156info['student_status'] = student_status
157return info
158
Note: See TracBrowser for help on using the repository browser.