[629] | 1 | ##parameters=REQUEST |
---|
[805] | 2 | # $Id: reserve_accommodation.py 1255 2007-01-10 00:24:40Z 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 |
---|
| 14 | logger = logging.getLogger('Student.Accommodation.Reserve') |
---|
| 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()) |
---|
| 21 | logger.info('"%s","tried to reserve accommodation"' % (member_id)) |
---|
| 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()) |
---|
| 57 | logger.info('"%s", %s' % (member_id,info['error'] )) |
---|
| 58 | if psm == 'invalid': |
---|
| 59 | psm = "please correct your input" |
---|
| 60 | else: |
---|
| 61 | psm = "Error in Data, unable to reserve bed." |
---|
[849] | 62 | return context.accommodation_pin_edit_form(rendered = res, |
---|
[701] | 63 | #psm = "%s, %s" % (psm,ds), |
---|
[821] | 64 | mode = mode, |
---|
[629] | 65 | ds = ds, |
---|
| 66 | ) |
---|
| 67 | elif psm == '': |
---|
[849] | 68 | return context.accommodation_pin_edit_form(rendered = res, |
---|
[629] | 69 | psm = None, |
---|
[821] | 70 | mode = mode, |
---|
[629] | 71 | ds = ds, |
---|
| 72 | ) |
---|
| 73 | elif psm == 'valid': |
---|
| 74 | s_id = ds.get('s_id') |
---|
[742] | 75 | if mode == 'create': |
---|
| 76 | pin = str(ds.get('acco_res_sc_pin')) |
---|
| 77 | pa = context.portal_accommodation |
---|
[1100] | 78 | code,bed = pa.searchAndReserveBed(s_id,"%s" % (info['student_status'])) |
---|
| 79 | #code,bed = pa.searchAndReserveBed(s_id,"%s_%s" % (info['sex'],ds.get('student_status'))) |
---|
[742] | 80 | if code < 0: |
---|
[855] | 81 | return context.accommodation_pin_edit_form(rendered = res, |
---|
[1178] | 82 | psm = "%s bed type=%s" % (bed,info['student_status']), |
---|
[821] | 83 | mode = mode, |
---|
[635] | 84 | ds = ds, |
---|
| 85 | ) |
---|
[742] | 86 | student.invokeFactory('StudentAccommodation',acco_id) |
---|
| 87 | acco = getattr(student,acco_id) |
---|
[828] | 88 | acco_info = context.waeup_tool.getAccommodationInfo(bed) |
---|
| 89 | ds.set('acco_maint_code', acco_info.get('maintenance_code')) |
---|
| 90 | ds.set('acco_maint_fee', acco_info.get('maintenance_fee')) |
---|
[742] | 91 | ds.set('acco_res_date', current) |
---|
| 92 | ds.set('bed', bed) |
---|
| 93 | ds.set('session', session) |
---|
[1100] | 94 | ds.set('student_status',info['student_status']) |
---|
[742] | 95 | acco.getContent().edit(mapping=ds) |
---|
[744] | 96 | #wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco) |
---|
[856] | 97 | return context.REQUEST.RESPONSE.redirect("%s/reserve_accommodation" % student.absolute_url()) |
---|
[742] | 98 | pin = str(ds.get('acco_main_sc_pin')) |
---|
| 99 | pp = context.portal_pins |
---|
[639] | 100 | acco = getattr(student,acco_id) |
---|
[742] | 101 | ds.set('acco_maint_date', current) |
---|
[639] | 102 | acco.getContent().edit(mapping=ds) |
---|
[744] | 103 | wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco) |
---|
[660] | 104 | return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % student.absolute_url()) |
---|