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

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

all psm checked and edited

  • Property svn:keywords set to Id
File size: 3.6 KB
RevLine 
[629]1##parameters=REQUEST
[805]2# $Id: reserve_accommodation.py 892 2006-11-18 21:14:18Z henrik $
[629]3"""
4process the Application Form
5return html renderer + psm
6"""
7import DateTime
8current = DateTime.DateTime()
9pr = context.portal_registration
[659]10wftool = context.portal_workflow
[629]11
[635]12info = context.getStudentInfo()
[821]13validate = REQUEST.has_key("cpsdocument_create_button")
14#           REQUEST.has_key("cpsdocument_edit_button")
[629]15
16lt = context.portal_layouts
17pr = context.portal_registration
[639]18session = current.year()
[659]19acco_id = 'accommodation_%s' % session
[639]20info = context.getStudentInfo()
21student = info['student']
[742]22mode = 'create'
23if info.has_key('acco') and info['acco']:
[821]24    validate = REQUEST.has_key("cpsdocument_edit_button")
[835]25    if info['acco_review_state'] == "maintenance_fee_paid":
[742]26        return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % info['acco'].absolute_url())
27    else:
28        mode = 'edit'
29d = {}
[833]30button = "Book"
[742]31if mode == 'edit':
32    info = context.getStudentInfo()
33    d['acco_res_date'] = info['acco_doc'].acco_res_date
34    d['acco_res_sc_pin'] = info['acco_doc'].acco_res_sc_pin
[821]35    d['student_status'] = info['acco_doc'].student_status
[742]36    d['bed'] = info['acco_doc'].bed
37    d['session'] = info['acco_doc'].session
[821]38    button = "Pay Maintainance Fee"
[742]39res,psm,ds = lt.renderLayout(layout_id= 'student_accommodation_fe',
[686]40                      schema_id= 'student_accommodation',
[629]41                      context=context,
42                      mapping=validate and REQUEST,
[742]43                      ob=d,
44                      layout_mode=mode,
[652]45                      formaction = "reserve_accommodation",
[821]46                      button = button
[629]47                      )
48if psm == 'invalid':
[849]49    return context.accommodation_pin_edit_form(rendered = res,
[892]50                                 psm = "Please correct your input!",
[701]51                                 #psm = "%s, %s" % (psm,ds),
[821]52                                 mode = mode,
[629]53                                 ds = ds,
54                                 )
55elif psm == '':
[849]56    return context.accommodation_pin_edit_form(rendered = res,
[629]57                                 psm = None,
[821]58                                 mode = mode,
[629]59                                 ds = ds,
60                                 )
61elif psm == 'valid':
62    s_id = ds.get('s_id')
[742]63    if mode == 'create':
64        pin = str(ds.get('acco_res_sc_pin'))
65        pa = context.portal_accommodation
66        code,bed = pa.searchAndReserveBed(s_id,"%s_%s" % (info['sex'],ds.get('student_status')))
67        if code < 0:
[855]68            return context.accommodation_pin_edit_form(rendered = res,
[635]69                                 psm = bed,
[821]70                                 mode = mode,
[635]71                                 ds = ds,
72                                 )
[742]73        student.invokeFactory('StudentAccommodation',acco_id)
74        acco = getattr(student,acco_id)
[828]75        acco_info = context.waeup_tool.getAccommodationInfo(bed)
76        ds.set('acco_maint_code', acco_info.get('maintenance_code'))
77        ds.set('acco_maint_fee', acco_info.get('maintenance_fee'))
[742]78        ds.set('acco_res_date', current)
79        ds.set('bed', bed)
80        ds.set('session', session)
81        acco.getContent().edit(mapping=ds)
[744]82        #wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco)
[856]83        return context.REQUEST.RESPONSE.redirect("%s/reserve_accommodation" % student.absolute_url())
[742]84pin = str(ds.get('acco_main_sc_pin'))
85pp = context.portal_pins
[639]86acco = getattr(student,acco_id)
[742]87ds.set('acco_maint_date', current)
[639]88acco.getContent().edit(mapping=ds)
[744]89wftool.doActionFor(acco,'pay_maintenance_fee',dest_container=acco)
[660]90return context.REQUEST.RESPONSE.redirect("%s/accommodation_view" % student.absolute_url())
Note: See TracBrowser for help on using the repository browser.