[1596] | 1 | ## Script (Python) "approve_epayment" |
---|
[1427] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters= |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: aprove_epayment.py 1425 2007-02-15 17:52:01Z joachim $ |
---|
| 11 | """ |
---|
| 12 | """ |
---|
| 13 | import logging |
---|
[1596] | 14 | logger = logging.getLogger('Skins.approve_epayment') |
---|
[1427] | 15 | import DateTime |
---|
| 16 | if context.portal_membership.isAnonymousUser(): |
---|
| 17 | return None |
---|
| 18 | |
---|
| 19 | request = context.REQUEST |
---|
| 20 | students = context.portal_url.getPortalObject().campus.students |
---|
| 21 | wftool = context.portal_workflow |
---|
| 22 | mtool = context.portal_membership |
---|
| 23 | is_anon = mtool.isAnonymousUser() |
---|
| 24 | member = mtool.getAuthenticatedMember() |
---|
| 25 | student_id = context.getStudentId() |
---|
| 26 | is_so = context.isSectionOfficer() |
---|
| 27 | if student_id is None or not is_so: |
---|
| 28 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 29 | |
---|
| 30 | student = getattr(students,student_id) |
---|
| 31 | |
---|
| 32 | pd = {} |
---|
| 33 | #from Products.zdb import set_trace;set_trace() |
---|
| 34 | doc = context.getContent() |
---|
| 35 | review_state = wftool.getInfoFor(context,'review_state',None) |
---|
| 36 | if review_state != "opened": |
---|
| 37 | return "not opened %s" % review_state |
---|
| 38 | pd['resp_code'] = 'AP' |
---|
| 39 | pd['resp_desc'] = 'Payment approved by %s, %s' % (member,DateTime.DateTime()) |
---|
| 40 | doc.edit(mapping=pd) |
---|
| 41 | if doc.type_description.startswith('School Fee'): |
---|
| 42 | wftool.doActionFor(student,'pay_school_fee') |
---|
[1596] | 43 | logger.info('%s approves epayment for %s' % (member,student_id)) |
---|
[1427] | 44 | wftool.doActionFor(context,'close') |
---|
| 45 | return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) |
---|