1 | ##parameters=REQUEST |
---|
2 | # $Id: apply_admission.py 543 2006-09-24 07:44:32Z henrik $ |
---|
3 | """ |
---|
4 | process the Application Form |
---|
5 | return html renderer + psm |
---|
6 | """ |
---|
7 | import DateTime |
---|
8 | current = DateTime.DateTime() |
---|
9 | pr = context.portal_registration |
---|
10 | |
---|
11 | info = context.getStudentInfo() |
---|
12 | validate = REQUEST.has_key("cpsdocument_create_button") |
---|
13 | |
---|
14 | lt = context.portal_layouts |
---|
15 | pr = context.portal_registration |
---|
16 | session = current.year() |
---|
17 | acco_id = 'Acco_%s' % session |
---|
18 | info = context.getStudentInfo() |
---|
19 | student = info['student'] |
---|
20 | if info['acco']: |
---|
21 | return context.REQUEST.RESPONSE.redirect("%s" % info['acco'].absolute_url()) |
---|
22 | res,psm,ds = lt.renderLayout(layout_id= 'student_accommodation_fe', |
---|
23 | schema_id= 'student_accommodation_fe', |
---|
24 | context=context, |
---|
25 | mapping=validate and REQUEST, |
---|
26 | ob={}, |
---|
27 | layout_mode='create', |
---|
28 | formaction = "reserve_accommodation", |
---|
29 | button = "book Bed", |
---|
30 | ) |
---|
31 | if psm == 'invalid': |
---|
32 | return context.accommodation_pin_form(rendered = res, |
---|
33 | #psm = "Please correct your input.", |
---|
34 | psm = "%s, %s" % (psm,ds), |
---|
35 | firstlayout = True, |
---|
36 | lastlayout = True, |
---|
37 | ds = ds, |
---|
38 | ) |
---|
39 | elif psm == '': |
---|
40 | return context.accommodation_pin_form(rendered = res, |
---|
41 | psm = None, |
---|
42 | firstlayout = True, |
---|
43 | lastlayout = True, |
---|
44 | ds = ds, |
---|
45 | ) |
---|
46 | elif psm == 'valid': |
---|
47 | s_id = ds.get('s_id') |
---|
48 | pin = str(ds.get('acco_res_ac_pin')) |
---|
49 | |
---|
50 | pa = context.portal_accommodation |
---|
51 | code,bed = pa.searchAndReserveBed(s_id,"%s_%s" % (info['sex'],ds.get('student_status'))) |
---|
52 | if code < 0: |
---|
53 | return context.accommodation_pin_form(rendered = res, |
---|
54 | psm = bed, |
---|
55 | firstlayout = True, |
---|
56 | lastlayout = True, |
---|
57 | ds = ds, |
---|
58 | ) |
---|
59 | student.invokeFactory('StudentAccommodation',acco_id) |
---|
60 | acco = getattr(student,acco_id) |
---|
61 | ds.set('acco_res_date', current) |
---|
62 | ds.set('bed', bed) |
---|
63 | ds.set('session', session) |
---|
64 | acco.getContent().edit(mapping=ds) |
---|
65 | return context.REQUEST.RESPONSE.redirect("%s/accommodation_slip" % student.absolute_url()) |
---|
66 | ##return context.accommodation_pin_form(rendered = res, |
---|
67 | ## psm = "successfully reserved bed %s" % bed, |
---|
68 | ## firstlayout = True, |
---|
69 | ## lastlayout = True, |
---|
70 | ## ds = ds, |
---|
71 | ## ) |
---|
72 | |
---|