- Timestamp:
- 10 Aug 2017, 06:43:59 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/remita/studentsbrowser.py
r14779 r14790 33 33 from kofacustom.nigeria.interfaces import MessageFactory as _ 34 34 35 from kofacustom.nigeria.remita.tests import ( 36 MERCHANTID, HOST, HTTPS, API_KEY, SERVICETYPEID) 37 35 38 grok.templatedir('browser_templates') 36 39 … … 107 110 108 111 # Here we use Remita test portal data 109 merchantId = '2547916'110 host = 'www.remitademo.net'111 https = False112 api_key = '1946'112 merchantId = MERCHANTID 113 host = HOST 114 https = HTTPS 115 api_key = API_KEY 113 116 114 117 def update(self): … … 160 163 161 164 # Here we use Remita test portal data 162 merchantId = '2547916'163 host = 'www.remitademo.net'164 https = False165 api_key = '1946'165 merchantId = MERCHANTID 166 host = HOST 167 https = HTTPS 168 api_key = API_KEY 166 169 167 170 def update(self): … … 214 217 label = _('Pay via Remita') 215 218 submit_button = _('Pay now') 216 https = False217 219 218 220 # Here we use Remita test portal data 219 merchantId = '2547916' 220 serviceTypeId = '4430731' 221 api_key = '1946' 221 merchantId = MERCHANTID 222 host = HOST 223 https = HTTPS 224 api_key = API_KEY 225 serviceTypeId = SERVICETYPEID 226 222 227 orderId = '3456346346' 223 host = 'www.remitademo.net'224 228 init_url = '/remita/ecomm/split/init.reg' 225 229 amount='1000'
Note: See TracChangeset for help on using the changeset viewer.