Changeset 2964
- Timestamp:
- 21 Dec 2007, 07:53:50 (17 years ago)
- Location:
- WAeUP_SRP
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
WAeUP_SRP/base/skins/waeup_epayment/interswitch_acco_cb.py
r2962 r2964 84 84 if pay_doc.category == 'hostel_maintenance': 85 85 if resp == '00': 86 acco_info = context.getAccommodationInfo() 86 87 d = {} 87 acco_info = context.getAccommodationInfo()88 88 d['acco_maint_date'] = pay_doc.date 89 89 d['acco_maint_fee'] = pay_doc.amount … … 105 105 except: 106 106 logger.info('%s no workflow action close' % student_id) 107 return request.RESPONSE.redirect("%s/ accommodation_view" % acco_info['student'].absolute_url())107 return request.RESPONSE.redirect("%s/waeup_document_view" % context.absolute_url()) 108 108 109 109 -
WAeUP_SRP/fceokene/waeup_custom/getPaymentsFolderInfo.py
r2943 r2964 109 109 hasattr(so_doc, 'order_id') and not so_doc.resp_code) or str(member) in ('admin',): 110 110 row['is_requeryable'] = True 111 row['callback_url'] = "%s/payments/%s/interswitch_ cb" % (student.absolute_url(),111 row['callback_url'] = "%s/payments/%s/interswitch_acco_cb" % (student.absolute_url(), 112 112 so.getId) 113 113 href = '%(query_url)s' % info … … 115 115 href += '&prodID=%(prod_id)s' % info 116 116 href += '&redirectURL=%(callback_url)s' % row 117 row['href'] = href 117 row['href'] = href 118 118 if (review_state == "closed") and so_doc.resp_code in ('SC','00','AP','IP',): 119 119 row['confirmed'] = 'active'
Note: See TracChangeset for help on using the changeset viewer.