Changeset 9327
- Timestamp:
- 11 Oct 2012, 21:12:44 (12 years ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/etranzact/browser.py
r8776 r9327 153 153 return False, msg, log 154 154 payment.r_code = u'ET' 155 payment.r_company = u'etranzact' 155 156 payment.r_desc = u'%s' % success_dict.get('TRANS_DESCR') 156 157 payment.r_amount_approved = float(success_dict.get('TRANS_AMOUNT',0.0)) -
main/waeup.aaue/trunk/src/waeup/aaue/payments/interfaces.py
r8930 r9327 99 99 ) 100 100 101 r_company = schema.Choice( 102 title = _(u'Payment Gateway'), 103 default = None, 104 required = False, 105 readonly = False, 106 vocabulary = SimpleKofaVocabulary( 107 (_('Interswitch'), 'interswitch'), 108 (_('eTranzact'), 'etranzact'),) 109 ) 110 101 111 ICustomOnlinePayment['p_category'].order = ICustomOnlinePayment[ 102 112 'p_category'].order
Note: See TracChangeset for help on using the changeset viewer.