source: WAeUP_SRP/base/skins/waeup_student/reserve_accommodation.py @ 3124

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

display also acco_maint_fee in edit mode

  • Property svn:keywords set to Id
File size: 6.1 KB
Line 
1## Script (Python) "reserve_accommodation.py"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=REQUEST
8# $Id: reserve_accommodation.py 3124 2008-02-07 07:34:45Z henrik $
9"""
10process the the accommodation reservation
11"""
12try:
13    from Products.zdb import set_trace
14except:
15    def set_trace():
16        pass
17import DateTime
18current = DateTime.DateTime()
19pr = context.portal_registration
20wftool = context.portal_workflow
21lt = context.portal_layouts
22info = context.getAccommodationInfo()
23
24import logging
25logger = logging.getLogger('Skins.reserve_accommodation')
26
27#if info is None:
28#    return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url())
29
30if info is None:
31    member_id = str(context.portal_membership.getAuthenticatedMember())
32    logger.info('%s tried to reserve accommodation' % (member_id))
33    return context.REQUEST.RESPONSE.redirect("%s/srp_invalid_access" % context.portal_url())
34
35mode = 'create'
36if not info['booking_allowed']:
37    return context.REQUEST.RESPONSE.redirect("%s/no_booking_allowed" % info['student'].absolute_url())
38student = info['student']
39student_id = info['student_id']
40acco_id = info['acco_id']
41#session = info['session'][1]
42session = info['session'][0]
43
44validate = REQUEST.has_key("cpsdocument_create_button")
45if info.has_key('acco') and info['acco']:
46    validate = REQUEST.has_key("cpsdocument_edit_button")
47    if info['maintenance_paid']:
48        if not info['acco_doc'].acco_maint_fee:
49            d_update = {}
50            hall_info = context.waeup_tool.getHallInfo(info['acco_doc'].bed)
51            d_update['acco_maint_fee'] = hall_info.get('maintenance_fee')
52            wftool.doActionFor(info['acco'],'reserve_bed')
53            info['acco_doc'].edit(mapping=d_update)
54            wftool.doActionFor(info['acco'],'pay_maintenance_fee')
55        return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % info['acco'].absolute_url())
56    # elif info['online_payment']:
57    #     return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % info['acco'].absolute_url())
58    #     # return context.REQUEST.RESPONSE.redirect("%s/pay_interswitch_acco?paytype=HOM" % info['student'].absolute_url())
59    else:
60        mode = 'edit'
61d = {}
62button = "Book"
63if mode == 'edit':
64    d['acco_res_date'] = info['acco_doc'].acco_res_date
65    d['acco_res_sc_pin'] = info['acco_doc'].acco_res_sc_pin
66    d['acco_maint_fee'] = info['acco_doc'].acco_maint_fee
67    d['student_status'] = info['acco_doc'].student_status
68    d['bed'] = info['acco_doc'].bed
69    d['session'] = info['acco_doc'].session
70    button = "Pay Maintainance Fee"
71res,psm,ds = lt.renderLayout(layout_id= 'student_accommodation_fe',
72                      schema_id= 'student_accommodation',
73                      context=context,
74                      mapping=validate and REQUEST,
75                      ob=d,
76                      layout_mode=mode,
77                      formaction = "reserve_accommodation",
78                      button = button
79                      )
80if psm == 'invalid' or info['error'] is not None:
81    member_id = str(context.portal_membership.getAuthenticatedMember())
82    logger.info('%s, %s' % (member_id,info['error'] ))
83    if psm == 'invalid':
84        psm = "Please correct your input."
85    else:
86        psm = "Error in data, unable to reserve bed."
87    return context.accommodation_edit_form(rendered = res,
88                                 psm = psm,
89                                 #psm = "%s, %s" % (psm,ds),
90                                 mode = mode,
91                                 ds = ds,
92                                 )
93elif psm == '':
94    return context.accommodation_edit_form(rendered = res,
95                                 psm = None,
96                                 mode = mode,
97                                 ds = ds,
98                                 )
99elif psm == 'valid':
100    if mode == 'create':
101        #set_trace()
102        pin = str(ds.get('acco_res_sc_pin'))
103        code,bed = context.portal_accommodation.searchAndReserveBed(student_id,
104                                                                    "%s" % (info['student_status']))
105        while True:
106            if code == 1:
107                break
108            if code == -1:
109                return context.accommodation_edit_form(rendered = res,
110                                        psm = "%s" % bed,
111                                        mode = mode,
112                                        ds = ds,
113                                        )
114            elif code == -2:
115                return context.accommodation_edit_form(rendered = res,
116                                        psm = "No bed available. Your category is already fully booked.",
117                                        mode = mode,
118                                        ds = ds,
119                                        )
120            else: # unknown error
121                return context.accommodation_edit_form(rendered = res,
122                                        psm = "Unexpected Error!",
123                                        mode = mode,
124                                        ds = ds,
125                                        )
126        student.invokeFactory('StudentAccommodation',acco_id)
127        hall_info = context.waeup_tool.getHallInfo(bed)
128        ds.set('acco_maint_code', hall_info.get('maintenance_code'))
129        ds.set('acco_maint_fee', hall_info.get('maintenance_fee'))
130        ds.set('acco_res_date', current)
131        ds.set('bed', bed)
132        ds.set('session', session)
133        ds.set('student_status',info['student_status'])
134        acco = getattr(student,acco_id)
135        acco.getContent().edit(mapping=ds)
136        #wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco)
137        return context.REQUEST.RESPONSE.redirect("%s/reserve_accommodation" % student.absolute_url())
138#pin = str(ds.get('acco_main_sc_pin'))
139#pp = context.portal_pins
140#acco = getattr(student,acco_id)
141d = {}
142d['acco_maint_sc_pin'] = ds.get('acco_maint_sc_pin')
143d['acco_maint_date'] = current
144info['acco_doc'].edit(mapping=d)
145wftool.doActionFor(info['acco'],'pay_maintenance_fee')
146return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % student.absolute_url())
147
Note: See TracBrowser for help on using the repository browser.