source: WAeUP_SRP/trunk/skins/waeup_student/reserve_accommodation.py @ 1173

Last change on this file since 1173 was 1171, checked in by Henrik Bettermann, 18 years ago

made login after createReturningStudent work
session_result_view is not yet ready

  • Property svn:keywords set to Id
File size: 4.1 KB
RevLine 
[629]1##parameters=REQUEST
[805]2# $Id: reserve_accommodation.py 1171 2007-01-01 22:54:52Z henrik $
[629]3"""
[1100]4process the the accommodation reservation
[629]5"""
6import DateTime
7current = DateTime.DateTime()
8pr = context.portal_registration
[659]9wftool = context.portal_workflow
[629]10lt = context.portal_layouts
[1100]11info = context.getAccommodationInfo()
[1133]12
[1140]13import logging
14logger = 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]19if 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
[639]24student = info['student']
[1100]25acco_id = info['acco_id']
26session = acco_id[-4:]
[742]27mode = 'create'
[1171]28if not info['review_state'] in ('cleared_and_validated',):
[942]29    return context.REQUEST.RESPONSE.redirect("%s/no_booking_allowed" % info['student'].absolute_url())
[1100]30validate = REQUEST.has_key("cpsdocument_create_button")
[742]31if 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'
37d = {}
[833]38button = "Book"
[742]39if 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]46res,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                      )
55if psm == 'invalid':
[849]56    return context.accommodation_pin_edit_form(rendered = res,
[892]57                                 psm = "Please correct your input!",
[701]58                                 #psm = "%s, %s" % (psm,ds),
[821]59                                 mode = mode,
[629]60                                 ds = ds,
61                                 )
62elif psm == '':
[849]63    return context.accommodation_pin_edit_form(rendered = res,
[629]64                                 psm = None,
[821]65                                 mode = mode,
[629]66                                 ds = ds,
67                                 )
68elif psm == 'valid':
69    s_id = ds.get('s_id')
[742]70    if mode == 'create':
71        pin = str(ds.get('acco_res_sc_pin'))
72        pa = context.portal_accommodation
[1100]73        code,bed = pa.searchAndReserveBed(s_id,"%s" % (info['student_status']))
74        #code,bed = pa.searchAndReserveBed(s_id,"%s_%s" % (info['sex'],ds.get('student_status')))
[742]75        if code < 0:
[855]76            return context.accommodation_pin_edit_form(rendered = res,
[635]77                                 psm = bed,
[821]78                                 mode = mode,
[635]79                                 ds = ds,
80                                 )
[742]81        student.invokeFactory('StudentAccommodation',acco_id)
82        acco = getattr(student,acco_id)
[828]83        acco_info = context.waeup_tool.getAccommodationInfo(bed)
84        ds.set('acco_maint_code', acco_info.get('maintenance_code'))
85        ds.set('acco_maint_fee', acco_info.get('maintenance_fee'))
[742]86        ds.set('acco_res_date', current)
87        ds.set('bed', bed)
88        ds.set('session', session)
[1100]89        ds.set('student_status',info['student_status'])
[742]90        acco.getContent().edit(mapping=ds)
[744]91        #wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco)
[856]92        return context.REQUEST.RESPONSE.redirect("%s/reserve_accommodation" % student.absolute_url())
[742]93pin = str(ds.get('acco_main_sc_pin'))
94pp = context.portal_pins
[639]95acco = getattr(student,acco_id)
[742]96ds.set('acco_maint_date', current)
[639]97acco.getContent().edit(mapping=ds)
[744]98wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco)
[660]99return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % student.absolute_url())
Note: See TracBrowser for help on using the repository browser.