[2857] | 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 |
---|
[629] | 7 | ##parameters=REQUEST |
---|
[805] | 8 | # $Id: reserve_accommodation.py 3406 2008-04-02 07:16:08Z henrik $ |
---|
[629] | 9 | """ |
---|
[1100] | 10 | process the the accommodation reservation |
---|
[629] | 11 | """ |
---|
[2857] | 12 | try: |
---|
| 13 | from Products.zdb import set_trace |
---|
| 14 | except: |
---|
| 15 | def set_trace(): |
---|
| 16 | pass |
---|
[629] | 17 | import DateTime |
---|
| 18 | current = DateTime.DateTime() |
---|
| 19 | pr = context.portal_registration |
---|
[659] | 20 | wftool = context.portal_workflow |
---|
[629] | 21 | lt = context.portal_layouts |
---|
[1100] | 22 | info = context.getAccommodationInfo() |
---|
[1133] | 23 | |
---|
[1140] | 24 | import logging |
---|
[1566] | 25 | logger = logging.getLogger('Skins.reserve_accommodation') |
---|
[1140] | 26 | |
---|
| 27 | #if info is None: |
---|
| 28 | # return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 29 | |
---|
[1133] | 30 | if info is None: |
---|
[1140] | 31 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
[1566] | 32 | logger.info('%s tried to reserve accommodation' % (member_id)) |
---|
[1140] | 33 | return context.REQUEST.RESPONSE.redirect("%s/srp_invalid_access" % context.portal_url()) |
---|
[1133] | 34 | |
---|
[1183] | 35 | mode = 'create' |
---|
| 36 | if not info['booking_allowed']: |
---|
| 37 | return context.REQUEST.RESPONSE.redirect("%s/no_booking_allowed" % info['student'].absolute_url()) |
---|
[639] | 38 | student = info['student'] |
---|
[2857] | 39 | student_id = info['student_id'] |
---|
[1100] | 40 | acco_id = info['acco_id'] |
---|
[2857] | 41 | #session = info['session'][1] |
---|
[2912] | 42 | session = info['session'][0] |
---|
| 43 | |
---|
[1100] | 44 | validate = REQUEST.has_key("cpsdocument_create_button") |
---|
[742] | 45 | if info.has_key('acco') and info['acco']: |
---|
[821] | 46 | validate = REQUEST.has_key("cpsdocument_edit_button") |
---|
[2857] | 47 | if info['maintenance_paid']: |
---|
[3120] | 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') |
---|
[742] | 55 | return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % info['acco'].absolute_url()) |
---|
[2887] | 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()) |
---|
[742] | 59 | else: |
---|
| 60 | mode = 'edit' |
---|
| 61 | d = {} |
---|
[833] | 62 | button = "Book" |
---|
[742] | 63 | if 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 |
---|
[3124] | 66 | d['acco_maint_fee'] = info['acco_doc'].acco_maint_fee |
---|
[821] | 67 | d['student_status'] = info['acco_doc'].student_status |
---|
[742] | 68 | d['bed'] = info['acco_doc'].bed |
---|
| 69 | d['session'] = info['acco_doc'].session |
---|
[821] | 70 | button = "Pay Maintainance Fee" |
---|
[742] | 71 | res,psm,ds = lt.renderLayout(layout_id= 'student_accommodation_fe', |
---|
[686] | 72 | schema_id= 'student_accommodation', |
---|
[629] | 73 | context=context, |
---|
| 74 | mapping=validate and REQUEST, |
---|
[742] | 75 | ob=d, |
---|
| 76 | layout_mode=mode, |
---|
[652] | 77 | formaction = "reserve_accommodation", |
---|
[821] | 78 | button = button |
---|
[629] | 79 | ) |
---|
[3126] | 80 | if psm == 'invalid': # or info['error'] is not None: |
---|
[1255] | 81 | member_id = str(context.portal_membership.getAuthenticatedMember()) |
---|
[3126] | 82 | #logger.info('%s, %s' % (member_id,info['error'] )) |
---|
| 83 | logger.info('%s entered invalid data' % (member_id)) |
---|
[1255] | 84 | if psm == 'invalid': |
---|
[1293] | 85 | psm = "Please correct your input." |
---|
[1255] | 86 | else: |
---|
[1293] | 87 | psm = "Error in data, unable to reserve bed." |
---|
[2857] | 88 | return context.accommodation_edit_form(rendered = res, |
---|
[1292] | 89 | psm = psm, |
---|
[701] | 90 | #psm = "%s, %s" % (psm,ds), |
---|
[821] | 91 | mode = mode, |
---|
[629] | 92 | ds = ds, |
---|
| 93 | ) |
---|
| 94 | elif psm == '': |
---|
[2857] | 95 | return context.accommodation_edit_form(rendered = res, |
---|
[629] | 96 | psm = None, |
---|
[821] | 97 | mode = mode, |
---|
[629] | 98 | ds = ds, |
---|
| 99 | ) |
---|
| 100 | elif psm == 'valid': |
---|
[742] | 101 | if mode == 'create': |
---|
[2867] | 102 | #set_trace() |
---|
[742] | 103 | pin = str(ds.get('acco_res_sc_pin')) |
---|
[2857] | 104 | code,bed = context.portal_accommodation.searchAndReserveBed(student_id, |
---|
| 105 | "%s" % (info['student_status'])) |
---|
| 106 | while True: |
---|
| 107 | if code == 1: |
---|
| 108 | break |
---|
[1412] | 109 | if code == -1: |
---|
[3406] | 110 | break |
---|
| 111 | #return context.accommodation_edit_form(rendered = res, |
---|
| 112 | # psm = "%s" % bed, |
---|
| 113 | # mode = mode, |
---|
| 114 | # ds = ds, |
---|
| 115 | # ) |
---|
[1412] | 116 | elif code == -2: |
---|
[2857] | 117 | return context.accommodation_edit_form(rendered = res, |
---|
| 118 | psm = "No bed available. Your category is already fully booked.", |
---|
| 119 | mode = mode, |
---|
| 120 | ds = ds, |
---|
| 121 | ) |
---|
| 122 | else: # unknown error |
---|
| 123 | return context.accommodation_edit_form(rendered = res, |
---|
| 124 | psm = "Unexpected Error!", |
---|
| 125 | mode = mode, |
---|
| 126 | ds = ds, |
---|
| 127 | ) |
---|
[742] | 128 | student.invokeFactory('StudentAccommodation',acco_id) |
---|
[2857] | 129 | hall_info = context.waeup_tool.getHallInfo(bed) |
---|
| 130 | ds.set('acco_maint_code', hall_info.get('maintenance_code')) |
---|
| 131 | ds.set('acco_maint_fee', hall_info.get('maintenance_fee')) |
---|
[742] | 132 | ds.set('acco_res_date', current) |
---|
| 133 | ds.set('bed', bed) |
---|
| 134 | ds.set('session', session) |
---|
[1100] | 135 | ds.set('student_status',info['student_status']) |
---|
[2857] | 136 | acco = getattr(student,acco_id) |
---|
[742] | 137 | acco.getContent().edit(mapping=ds) |
---|
[744] | 138 | #wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco) |
---|
[856] | 139 | return context.REQUEST.RESPONSE.redirect("%s/reserve_accommodation" % student.absolute_url()) |
---|
[3117] | 140 | #pin = str(ds.get('acco_main_sc_pin')) |
---|
| 141 | #pp = context.portal_pins |
---|
| 142 | #acco = getattr(student,acco_id) |
---|
| 143 | d = {} |
---|
| 144 | d['acco_maint_sc_pin'] = ds.get('acco_maint_sc_pin') |
---|
| 145 | d['acco_maint_date'] = current |
---|
| 146 | info['acco_doc'].edit(mapping=d) |
---|
| 147 | wftool.doActionFor(info['acco'],'pay_maintenance_fee') |
---|
[660] | 148 | return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % student.absolute_url()) |
---|
[1292] | 149 | |
---|