[535] | 1 | ## Script (Python) "cpsdocument_edit" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=student=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $ |
---|
| 11 | """ |
---|
| 12 | return Info about the current Student |
---|
| 13 | """ |
---|
| 14 | request = context.REQUEST |
---|
[563] | 15 | form = request.form |
---|
| 16 | fget = form.get |
---|
[535] | 17 | wf = context.portal_workflow |
---|
| 18 | mtool = context.portal_membership |
---|
| 19 | member = mtool.getAuthenticatedMember() |
---|
| 20 | path_info = request.get('PATH_INFO').split('/') |
---|
[563] | 21 | roles = member.getRoles() |
---|
[741] | 22 | |
---|
[535] | 23 | info = {} |
---|
[723] | 24 | info['is_manager'] = context.isManager() |
---|
[659] | 25 | info['is_student'] = context.isStudent() |
---|
[535] | 26 | member_id = str(member) |
---|
[645] | 27 | if student is None: |
---|
[741] | 28 | if context.isManager() and 'students' in path_info: |
---|
| 29 | student_id = path_info[path_info.index('students')+1] |
---|
[646] | 30 | else: |
---|
[748] | 31 | student_id = member_id |
---|
[645] | 32 | else: |
---|
| 33 | student_id = student.getId() |
---|
[648] | 34 | res = context.portal_catalog(id = student_id,portal_type='Student') |
---|
[742] | 35 | if not res:# or len(res) > 1: |
---|
[639] | 36 | return None |
---|
[648] | 37 | brain = res[-1] |
---|
[639] | 38 | student = brain.getObject() |
---|
[656] | 39 | student_path = brain.getPath() |
---|
[742] | 40 | info['review_state'] = wf.getInfoFor(student,'review_state',None) |
---|
[535] | 41 | info['student'] = student |
---|
[584] | 42 | info['id'] = student.getId() |
---|
[662] | 43 | info['url'] = student.absolute_url() |
---|
[538] | 44 | info['student_doc'] = student.getContent() |
---|
[535] | 45 | info['app'] = student.application |
---|
| 46 | info['app_doc'] = student.application.getContent() |
---|
| 47 | info['per'] = student.personal |
---|
| 48 | info['per_doc'] = student.personal.getContent() |
---|
[635] | 49 | info['sex'] = 'male' |
---|
| 50 | if info['per_doc'].sex: |
---|
| 51 | info['sex'] = 'female' |
---|
[639] | 52 | res = context.portal_catalog(container_path=student_path, |
---|
| 53 | portal_type='StudentAccommodation') |
---|
| 54 | if res: |
---|
| 55 | acco = res[0].getObject() |
---|
| 56 | info['acco'] = acco |
---|
| 57 | info['acco_doc'] = acco.getContent() |
---|
[748] | 58 | info['acco_review_state'] = wf.getInfoFor(acco,'review_state',None) |
---|
[639] | 59 | else: |
---|
| 60 | info['acco'] = None |
---|
[659] | 61 | |
---|
| 62 | items = [] |
---|
[672] | 63 | s_edit_links = {'StudentApplication': 'student_edit', |
---|
| 64 | 'StudentAccommodation': '', |
---|
| 65 | 'StudentPersonal': '', |
---|
| 66 | } |
---|
[723] | 67 | s_view_links = {'StudentApplication': None, |
---|
[748] | 68 | 'StudentAccommodation': 'accommodation_view', |
---|
[723] | 69 | 'StudentPersonal': None, |
---|
[748] | 70 | 'StudentApplication': 'application_view', |
---|
[723] | 71 | 'StudentStudyCourse': 'study_course_view', |
---|
[674] | 72 | } |
---|
[659] | 73 | sos = context.portal_catalog(container_path=student_path) |
---|
[656] | 74 | for so in sos: |
---|
| 75 | row = {} |
---|
| 76 | soo = so.getObject() |
---|
| 77 | sod = soo.getContent() |
---|
| 78 | row['id'] = soo.getId() |
---|
| 79 | row['title'] = sod.Title() |
---|
| 80 | row['url'] = soo.absolute_url() |
---|
[659] | 81 | row['type'] = so.portal_type |
---|
[656] | 82 | row['is_editable'] = mtool.checkPermission('Modify portal content', soo) |
---|
[739] | 83 | sv_link = s_view_links.get(so.portal_type,None) or "waeup_document_view" |
---|
[723] | 84 | row['s_view_link'] = "%s/%s" % (soo.absolute_url(),sv_link) |
---|
[674] | 85 | se_link = s_edit_links.get(so.portal_type,None) |
---|
| 86 | row['s_edit_link'] = None |
---|
| 87 | if se_link: |
---|
| 88 | row['s_edit_link'] = "%s/%s" % (student.absolute_url(),se_link) |
---|
[659] | 89 | row['review_state'] = so.review_state |
---|
[750] | 90 | row['display'] = so.review_state in ('opened','closed',) or\ |
---|
| 91 | so.portal_type in ("StudentAccommodation","StudentStudyCourse") |
---|
[656] | 92 | items.append(row) |
---|
| 93 | info['items'] = items |
---|
[742] | 94 | request.set('student_id',student_id) |
---|
| 95 | request.set('student_url',info['url']) |
---|
[535] | 96 | return info |
---|