[629] | 1 | ##parameters=REQUEST |
---|
[805] | 2 | # $Id: reserve_accommodation.py 1596 2007-03-19 21:45:44Z joachim $ |
---|
[629] | 3 | """ |
---|
[1100] | 4 | process the the accommodation reservation |
---|
[629] | 5 | """ |
---|
| 6 | import DateTime |
---|
| 7 | current = DateTime.DateTime() |
---|
| 8 | pr = context.portal_registration |
---|
[659] | 9 | wftool = context.portal_workflow |
---|
[629] | 10 | lt = context.portal_layouts |
---|
[1100] | 11 | info = context.getAccommodationInfo() |
---|
[1133] | 12 | |
---|
[1140] | 13 | import logging |
---|
[1596] | 14 | logger = logging.getLogger('Skins.reserve_accommodation') |
---|
[1140] | 15 | |
---|
| 16 | #if info is None: |
---|
| 17 | # return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 18 | |
---|
[1133] | 19 | if info is None: |
---|
[1140] | 20 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
[1596] | 21 | logger.info('%s tried to reserve accommodation' % (member_id)) |
---|
[1140] | 22 | return context.REQUEST.RESPONSE.redirect("%s/srp_invalid_access" % context.portal_url()) |
---|
[1133] | 23 | |
---|
[1183] | 24 | mode = 'create' |
---|
| 25 | if not info['booking_allowed']: |
---|
| 26 | return context.REQUEST.RESPONSE.redirect("%s/no_booking_allowed" % info['student'].absolute_url()) |
---|
[639] | 27 | student = info['student'] |
---|
[1100] | 28 | acco_id = info['acco_id'] |
---|
| 29 | session = acco_id[-4:] |
---|
| 30 | validate = REQUEST.has_key("cpsdocument_create_button") |
---|
[742] | 31 | if info.has_key('acco') and info['acco']: |
---|
[821] | 32 | validate = REQUEST.has_key("cpsdocument_edit_button") |
---|
[835] | 33 | if info['acco_review_state'] == "maintenance_fee_paid": |
---|
[742] | 34 | return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % info['acco'].absolute_url()) |
---|
| 35 | else: |
---|
| 36 | mode = 'edit' |
---|
| 37 | d = {} |
---|
[833] | 38 | button = "Book" |
---|
[742] | 39 | if mode == 'edit': |
---|
| 40 | d['acco_res_date'] = info['acco_doc'].acco_res_date |
---|
| 41 | d['acco_res_sc_pin'] = info['acco_doc'].acco_res_sc_pin |
---|
[821] | 42 | d['student_status'] = info['acco_doc'].student_status |
---|
[742] | 43 | d['bed'] = info['acco_doc'].bed |
---|
| 44 | d['session'] = info['acco_doc'].session |
---|
[821] | 45 | button = "Pay Maintainance Fee" |
---|
[742] | 46 | res,psm,ds = lt.renderLayout(layout_id= 'student_accommodation_fe', |
---|
[686] | 47 | schema_id= 'student_accommodation', |
---|
[629] | 48 | context=context, |
---|
| 49 | mapping=validate and REQUEST, |
---|
[742] | 50 | ob=d, |
---|
| 51 | layout_mode=mode, |
---|
[652] | 52 | formaction = "reserve_accommodation", |
---|
[821] | 53 | button = button |
---|
[629] | 54 | ) |
---|
[1255] | 55 | if psm == 'invalid' or info['error'] is not None: |
---|
| 56 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
[1596] | 57 | logger.info('%s, %s' % (member_id,info['error'] )) |
---|
[1255] | 58 | if psm == 'invalid': |
---|
[1293] | 59 | psm = "Please correct your input." |
---|
[1255] | 60 | else: |
---|
[1293] | 61 | psm = "Error in data, unable to reserve bed." |
---|
[849] | 62 | return context.accommodation_pin_edit_form(rendered = res, |
---|
[1292] | 63 | psm = psm, |
---|
[701] | 64 | #psm = "%s, %s" % (psm,ds), |
---|
[821] | 65 | mode = mode, |
---|
[629] | 66 | ds = ds, |
---|
| 67 | ) |
---|
| 68 | elif psm == '': |
---|
[849] | 69 | return context.accommodation_pin_edit_form(rendered = res, |
---|
[629] | 70 | psm = None, |
---|
[821] | 71 | mode = mode, |
---|
[629] | 72 | ds = ds, |
---|
| 73 | ) |
---|
| 74 | elif psm == 'valid': |
---|
| 75 | s_id = ds.get('s_id') |
---|
[742] | 76 | if mode == 'create': |
---|
| 77 | pin = str(ds.get('acco_res_sc_pin')) |
---|
| 78 | pa = context.portal_accommodation |
---|
[1412] | 79 | already = pa(student=s_id) |
---|
| 80 | if not already: |
---|
| 81 | code,bed = pa.searchAndReserveBed(s_id,"%s" % (info['student_status'])) |
---|
| 82 | #code,bed = pa.searchAndReserveBed(s_id,"%s_%s" % (info['sex'],ds.get('student_status'))) |
---|
| 83 | if code == -1: |
---|
| 84 | return context.accommodation_pin_edit_form(rendered = res, |
---|
| 85 | psm = "%s" % bed, |
---|
| 86 | mode = mode, |
---|
| 87 | ds = ds, |
---|
| 88 | ) |
---|
| 89 | elif code == -2: |
---|
| 90 | return context.accommodation_pin_edit_form(rendered = res, |
---|
| 91 | psm = "No bed available. Your category is already fully booked.", |
---|
| 92 | mode = mode, |
---|
| 93 | ds = ds, |
---|
| 94 | ) |
---|
| 95 | else: |
---|
[1596] | 96 | bed = already[0].bed |
---|
[742] | 97 | student.invokeFactory('StudentAccommodation',acco_id) |
---|
| 98 | acco = getattr(student,acco_id) |
---|
[828] | 99 | acco_info = context.waeup_tool.getAccommodationInfo(bed) |
---|
| 100 | ds.set('acco_maint_code', acco_info.get('maintenance_code')) |
---|
| 101 | ds.set('acco_maint_fee', acco_info.get('maintenance_fee')) |
---|
[742] | 102 | ds.set('acco_res_date', current) |
---|
| 103 | ds.set('bed', bed) |
---|
| 104 | ds.set('session', session) |
---|
[1100] | 105 | ds.set('student_status',info['student_status']) |
---|
[742] | 106 | acco.getContent().edit(mapping=ds) |
---|
[744] | 107 | #wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco) |
---|
[856] | 108 | return context.REQUEST.RESPONSE.redirect("%s/reserve_accommodation" % student.absolute_url()) |
---|
[742] | 109 | pin = str(ds.get('acco_main_sc_pin')) |
---|
| 110 | pp = context.portal_pins |
---|
[639] | 111 | acco = getattr(student,acco_id) |
---|
[742] | 112 | ds.set('acco_maint_date', current) |
---|
[639] | 113 | acco.getContent().edit(mapping=ds) |
---|
[744] | 114 | wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco) |
---|
[660] | 115 | return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % student.absolute_url()) |
---|
[1292] | 116 | |
---|