[1274] | 1 | ## Script (Python) "pay_by_sc" |
---|
| 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: pay_by_sc.py 5223 2010-06-14 17:45:58Z henrik $ |
---|
| 11 | """ |
---|
| 12 | pay online |
---|
| 13 | """ |
---|
| 14 | import logging |
---|
| 15 | from urllib import urlencode |
---|
[1568] | 16 | logger = logging.getLogger('Skins.pay_by_sc') |
---|
[1274] | 17 | import DateTime |
---|
[1758] | 18 | try: |
---|
| 19 | from Products.zdb import set_trace |
---|
| 20 | except: |
---|
| 21 | def set_trace(): |
---|
| 22 | pass |
---|
[1365] | 23 | |
---|
| 24 | if context.portal_membership.isAnonymousUser(): |
---|
| 25 | return None |
---|
[2454] | 26 | wftool = context.portal_workflow |
---|
[1274] | 27 | lt = context.portal_layouts |
---|
| 28 | request = context.REQUEST |
---|
| 29 | students = context.portal_url.getPortalObject().campus.students |
---|
| 30 | student_id = context.getStudentId() |
---|
| 31 | if student_id is None: |
---|
[1283] | 32 | return request.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
[1274] | 33 | |
---|
| 34 | student = getattr(students,student_id) |
---|
[2881] | 35 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
[2454] | 36 | |
---|
[2881] | 37 | # session = student_record.session |
---|
[2454] | 38 | # next_session, next_session_str = context.getNextSessionId(session) |
---|
| 39 | |
---|
[2881] | 40 | next_info = context.getNextInfo(student_record) |
---|
[2454] | 41 | next_session_id = next_info['next_session_id'] |
---|
[2451] | 42 | next_session_str = next_info['next_session_str'] |
---|
[2454] | 43 | next_level_id = next_info['next_level_id'] |
---|
| 44 | next_transition = next_info['next_transition'] |
---|
[2475] | 45 | next_verdict = next_info['next_verdict'] |
---|
[2678] | 46 | next_previous_verdict = next_info['next_previous_verdict'] |
---|
[2451] | 47 | |
---|
[5205] | 48 | if not next_info['payment_allowed']: |
---|
| 49 | logger.info('%s called pay_by_sc manually' % student_id) |
---|
| 50 | return 'Do not call this form manually!' |
---|
| 51 | |
---|
[2454] | 52 | validate = request.has_key("cpsdocument_create_button") |
---|
[1274] | 53 | res,psm,ds = lt.renderLayout(layout_id= 'student_schoolfee', |
---|
[1376] | 54 | schema_id= 'payment', |
---|
[1274] | 55 | context=context, |
---|
[1283] | 56 | mapping=validate and request, |
---|
[1274] | 57 | ob={}, |
---|
| 58 | layout_mode="create", |
---|
| 59 | formaction = "pay_by_sc", |
---|
[1856] | 60 | button = 'Pay', |
---|
| 61 | commit = False, |
---|
[1274] | 62 | ) |
---|
[5205] | 63 | |
---|
[1274] | 64 | if psm == 'invalid': |
---|
| 65 | psm = 'Please correct your errors!' |
---|
| 66 | return context.pay_by_sc_form(rendered = res, |
---|
| 67 | psm = psm, |
---|
| 68 | mode = 'edit', |
---|
[1758] | 69 | next_session_str = next_session_str, |
---|
[1274] | 70 | ds = ds, |
---|
| 71 | ) |
---|
| 72 | elif psm == '': |
---|
| 73 | return context.pay_by_sc_form(rendered = res, |
---|
| 74 | psm = None, |
---|
| 75 | mode = 'edit', |
---|
[1758] | 76 | next_session_str = next_session_str, |
---|
[1274] | 77 | ds = ds, |
---|
| 78 | ) |
---|
| 79 | elif psm == 'valid': |
---|
| 80 | pass |
---|
| 81 | if "payments" not in student.objectIds(): |
---|
| 82 | student.invokeFactory('PaymentsFolder','payments') |
---|
| 83 | payments = getattr(student,'payments') |
---|
| 84 | d = {} |
---|
| 85 | d['Title'] = 'Payments' |
---|
| 86 | payments.getContent().edit(mapping=d) |
---|
[5223] | 87 | context.waeup_tool.changeWorkflowState(payments, 'opened') |
---|
[1274] | 88 | else: |
---|
| 89 | payments = getattr(student,'payments') |
---|
[1283] | 90 | #from Products.zdb import set_trace; set_trace() |
---|
[1274] | 91 | info = {} |
---|
[2619] | 92 | p_id = "p%s" % ds.get('pin_n') |
---|
[2059] | 93 | pin = str(ds.get('pin')) |
---|
| 94 | try: |
---|
| 95 | cost = context.portal_pins(pin="".join(pin.split('-')))[0].cost |
---|
| 96 | except: |
---|
| 97 | cost = "n/a" |
---|
| 98 | try: |
---|
| 99 | x = float(cost) |
---|
| 100 | except: |
---|
| 101 | cost = "n/a" |
---|
[2153] | 102 | |
---|
[1390] | 103 | if not hasattr(payments,p_id): |
---|
| 104 | now = DateTime.DateTime() |
---|
| 105 | info['date'] = now |
---|
[2059] | 106 | info['amount'] = cost |
---|
[2619] | 107 | pin = info['order_id'] = "%s" % pin |
---|
[2877] | 108 | #info['type_code'] = "%s" % pin #type_code is redundant and will be removed soon |
---|
[1758] | 109 | info['type_description'] = 'School Fee for Session %s' % next_session_str |
---|
[2877] | 110 | info['type'] = 'sc' |
---|
[2859] | 111 | info['status'] = 'paid' |
---|
[3256] | 112 | info['session_id'] = next_session_id |
---|
[2891] | 113 | info['item'] = student_record.course |
---|
| 114 | info['category'] = 'schoolfee' |
---|
[1390] | 115 | info['resp_code'] = "SC" |
---|
| 116 | info['resp_desc'] = "SC Payment Successful" |
---|
| 117 | payments.invokeFactory('Payment', p_id) |
---|
| 118 | payment = getattr(payments,p_id) |
---|
| 119 | wftool = context.portal_workflow |
---|
[5223] | 120 | context.waeup_tool.changeWorkflowState(payment, 'opened') |
---|
[1390] | 121 | payment.getContent().edit(mapping=info) |
---|
[5223] | 122 | context.waeup_tool.changeWorkflowState(payment, 'closed') |
---|
[2454] | 123 | |
---|
| 124 | study_course = getattr(student,'study_course') |
---|
[2459] | 125 | try: |
---|
[5223] | 126 | context.waeup_tool.changeWorkflowState(study_course, 'opened') |
---|
[2459] | 127 | except: |
---|
[2475] | 128 | pass |
---|
[2454] | 129 | study_course.getContent().edit(mapping= {'current_level': next_level_id, |
---|
[2475] | 130 | 'current_session': next_session_id, |
---|
| 131 | 'current_verdict': next_verdict, |
---|
[2678] | 132 | 'previous_verdict': next_previous_verdict, |
---|
[2475] | 133 | }) |
---|
[2454] | 134 | if next_transition: |
---|
[2459] | 135 | wftool.doActionFor(student,next_transition) |
---|
| 136 | |
---|
[1568] | 137 | logger.info('%s paid school fee by scratch card' % student_id) |
---|
[1390] | 138 | else: |
---|
[1568] | 139 | logger.info('%s repeatedly paid school fee by scratch card' % student_id) |
---|
[1283] | 140 | url = "%s/payments" % (student.absolute_url()) |
---|
[1274] | 141 | request.RESPONSE.redirect(url) |
---|
| 142 | |
---|