[3714] | 1 | ## Script (Python) "pay_online" |
---|
| 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_interswitch.py 2619 2007-11-10 17:39:36Z henrik $ |
---|
| 11 | """ |
---|
| 12 | pay online |
---|
| 13 | """ |
---|
| 14 | from urllib import urlencode |
---|
| 15 | import logging |
---|
| 16 | logger = logging.getLogger('Skins.pay_interswitch') |
---|
| 17 | import DateTime |
---|
| 18 | |
---|
| 19 | if context.portal_membership.isAnonymousUser(): |
---|
| 20 | return None |
---|
| 21 | |
---|
| 22 | try: |
---|
| 23 | from Products.zdb import set_trace |
---|
| 24 | except: |
---|
| 25 | def set_trace(): |
---|
| 26 | pass |
---|
| 27 | request = context.REQUEST |
---|
| 28 | wftool = context.portal_workflow |
---|
| 29 | students = context.portal_url.getPortalObject().campus.students |
---|
| 30 | |
---|
| 31 | |
---|
| 32 | student_id = context.getStudentId() |
---|
| 33 | student = getattr(students,student_id) |
---|
| 34 | |
---|
| 35 | student_record = context.students_catalog.getRecordByKey(student_id) |
---|
| 36 | #amount,description = context.getSchoolFee(student_record.faculty,student_record.session,student_record.course) |
---|
| 37 | info = {} |
---|
| 38 | info['student'] = student_record |
---|
| 39 | info['payment_possible'] = False |
---|
| 40 | info['amount'] = '0' |
---|
| 41 | info['bank'] = '' |
---|
| 42 | info['type_description'] = '' |
---|
| 43 | info['pay_bill_to'] = '' |
---|
| 44 | fee_dict = context.getSchoolFee(student_record) |
---|
| 45 | fulltime = student_record.mode.endswith('_ft') |
---|
| 46 | |
---|
| 47 | if not fee_dict: |
---|
| 48 | return context.interswitch_form(info=info) |
---|
| 49 | |
---|
[3739] | 50 | info['site_id'] = '115' |
---|
[3714] | 51 | info['currency_id'] = '566' |
---|
[3739] | 52 | pay_item_id = "11500" |
---|
[3714] | 53 | |
---|
| 54 | #info['type_code'] = sbrain.course #type_code is redundant and will be removed soon |
---|
| 55 | info['bank'] = '' |
---|
| 56 | info['payment_possible'] = True |
---|
| 57 | info['type_description'] = fee_dict['description'] |
---|
| 58 | info['pay_bill_to'] = student_record.name |
---|
| 59 | info['student_id'] = student_id |
---|
| 60 | info['student_name'] = student_record.name |
---|
| 61 | info['type'] = 'online' |
---|
| 62 | info['status'] = 'started' |
---|
| 63 | info['session_id'] = fee_dict['next_session_id'] |
---|
| 64 | info['item'] = student_record.course |
---|
| 65 | info['category'] = 'schoolfee' |
---|
| 66 | info['student_email'] = student_record.email |
---|
| 67 | now = DateTime.DateTime() |
---|
| 68 | info['date'] = now |
---|
[3743] | 69 | info['pay_ship_to'] = "Federal College of Education [Special] Oyo" |
---|
[3714] | 70 | timestamp = "%d" % int(now.timeTime()*1000) |
---|
| 71 | info['order_id'] = "%s%s" % (student_id[1:],timestamp) |
---|
| 72 | p_id = "p%s" % timestamp |
---|
[3748] | 73 | info['surcharge'] = interswitch_amount = 300 |
---|
[3760] | 74 | amount = fee_dict['all'] |
---|
| 75 | bt_amount = 2000 |
---|
| 76 | fceoyo_split = 500 |
---|
| 77 | info['amount'] = amount + bt_amount + fceoyo_split |
---|
[3714] | 78 | |
---|
[3760] | 79 | #getSchoolFee provides pure school fee, the other fees have to be added |
---|
| 80 | total_amount = 100* (amount + interswitch_amount + bt_amount + fceoyo_split) |
---|
| 81 | |
---|
[3714] | 82 | if student_id is None: |
---|
| 83 | return context.REQUEST.RESPONSE.redirect("%s/srp_anonymous_view" % context.portal_url()) |
---|
| 84 | |
---|
| 85 | if True: |
---|
[3752] | 86 | info['action'] = "https://webpay.interswitchng.com/paydirect/webpay/pay.aspx" |
---|
[3714] | 87 | else: |
---|
| 88 | #pass |
---|
| 89 | #return None |
---|
| 90 | info['action'] = "%s/payments/%s/simulate_callback" % (student.absolute_url(),p_id) |
---|
| 91 | |
---|
| 92 | |
---|
| 93 | if "payments" not in student.objectIds(): |
---|
| 94 | student.invokeFactory('PaymentsFolder','payments') |
---|
| 95 | payments = getattr(student,'payments') |
---|
| 96 | d = {} |
---|
| 97 | d['Title'] = 'Payments' |
---|
| 98 | payments.getContent().edit(mapping=d) |
---|
| 99 | wftool.doActionFor(payments,'open') |
---|
| 100 | else: |
---|
| 101 | payments = getattr(student,'payments') |
---|
| 102 | if request.has_key('epayment'): |
---|
| 103 | return context.interswitch_form(info=info) |
---|
| 104 | |
---|
| 105 | |
---|
| 106 | payments.invokeFactory('Payment', p_id) |
---|
| 107 | payment = getattr(payments,p_id) |
---|
| 108 | wftool.doActionFor(payment,'open') |
---|
| 109 | d = {} |
---|
| 110 | d.update(info) |
---|
| 111 | payment.getContent().edit(mapping=d) |
---|
| 112 | |
---|
| 113 | |
---|
| 114 | info['callback_url'] = "%s/payments/%s/interswitch_cb?echo=%s" % (student.absolute_url(), |
---|
| 115 | p_id, |
---|
| 116 | p_id) |
---|
[3743] | 117 | |
---|
[3748] | 118 | |
---|
[3743] | 119 | |
---|
[3714] | 120 | |
---|
| 121 | logger.info('%(student_id)s initiated online school fee payment with order_id %(order_id)s and callback url %(callback_url)s' % info) |
---|
| 122 | payment_fields = (('product_id','site_id'), |
---|
| 123 | ('site_redirect_url','callback_url'), |
---|
| 124 | ('Currency','currency_id'), |
---|
| 125 | ('cust_id','student_id'), |
---|
| 126 | ('cust_id_desc','type_description'), |
---|
| 127 | ('cust_name','student_name'), |
---|
| 128 | ('txn_ref','order_id'), |
---|
| 129 | ('Amount','amount'), |
---|
| 130 | ) |
---|
| 131 | args = {} |
---|
| 132 | for arg,field in payment_fields: |
---|
| 133 | args[arg] = info[field] |
---|
| 134 | |
---|
[3760] | 135 | |
---|
[3748] | 136 | |
---|
[3739] | 137 | |
---|
| 138 | xmldict = {} |
---|
| 139 | xmldict['detail_ref'] = args['txn_ref'] |
---|
| 140 | xmldict['department'] = student_record.department |
---|
| 141 | xmldict['faculty'] = student_record.faculty |
---|
[3748] | 142 | xmldict['amount'] = "%d" % int(100*amount) |
---|
| 143 | xmldict['bt_amount'] = "%d" % int(100*bt_amount) |
---|
[3739] | 144 | |
---|
[3743] | 145 | if student_record.mode in ('ug_sw','prence',): |
---|
[4020] | 146 | xmldict['fceoyo_acct'] = "0285001000000899" |
---|
[3743] | 147 | xmldict['bank_id'] = '89' |
---|
| 148 | elif student_record.mode in ('ug_ft',): |
---|
[4020] | 149 | xmldict['fceoyo_acct'] = "1681001000137" |
---|
[3743] | 150 | xmldict['bank_id'] = '125' |
---|
[3739] | 151 | else: |
---|
[3743] | 152 | xmldict['fceoyo_acct'] = "0000000000000" |
---|
| 153 | xmldict['bank_id'] = '0' |
---|
[3739] | 154 | |
---|
[3748] | 155 | xmldict['fceoyo_split'] = "%d" % int(100*fceoyo_split) |
---|
[3739] | 156 | |
---|
[3748] | 157 | |
---|
[3739] | 158 | xmltext = """<payment_item_detail> |
---|
[3748] | 159 | <item_details detail_ref="%(detail_ref)s" college="fceoyo" department="%(department)s" faculty="%(faculty)s" > |
---|
| 160 | <item_detail item_id="1" item_name="FCEOyo School Fee" item_amt="%(amount)s" bank_id="%(bank_id)s" acct_num="%(fceoyo_acct)s" /> |
---|
[4020] | 161 | <item_detail item_id="2" item_name="FCEOyo Split" item_amt="%(fceoyo_split)s" bank_id="125" acct_num="3030010075" /> |
---|
[3787] | 162 | <item_detail item_id="3" item_name="BT" item_amt="%(bt_amount)s" bank_id="89" acct_num="0061001000021095" /> |
---|
[3739] | 163 | </item_details> |
---|
| 164 | </payment_item_detail>""" % xmldict |
---|
| 165 | |
---|
| 166 | info['xml_data'] = """<input type="hidden" name="xml_data" value='%s' />""" % xmltext |
---|
| 167 | |
---|
[3714] | 168 | args['Amount'] = "%d" % (total_amount) |
---|
[3739] | 169 | args['site_name'] = "fceoyo.waeup.org" |
---|
[3714] | 170 | args['cust_name_desc'] = "Student Name" |
---|
| 171 | args['pay_item_id'] = pay_item_id |
---|
[3743] | 172 | args['pay_item_name'] = "FCE[Special] Oyo Tuition Payments" |
---|
[3739] | 173 | args['payment_params'] = 'college_split' |
---|
| 174 | #args['xml_data'] = '' |
---|
| 175 | #args['xml_data'] = xmltext # info['xml_data']can be used instead |
---|
[3714] | 176 | info['args'] = args |
---|
[3739] | 177 | |
---|
[3714] | 178 | return context.goto_interswitch_form(info=info) |
---|
[3739] | 179 | |
---|