Changeset 16090 for main/waeup.uniben/trunk/src/waeup/uniben
- Timestamp:
- 12 May 2020, 11:41:37 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/remita/browser.py
r16089 r16090 28 28 29 29 # Temporarily we can use the test portal like in kofacustom.nigeria 30 31 from kofacustom.nigeria.remita.tests import ( 32 MERCHANTID, 33 HOST, 34 HTTPS, 35 API_KEY, 36 SERVICETYPEID 37 ) 38 39 #MERCHANTID = '2067163382' 40 #HOST = 'login.remita.net' 41 #HTTPS = True 42 #API_KEY = '309418' 43 #SERVICETYPEID = '4430731' 30 MERCHANTID = '2067163382' 31 HOST = 'login.remita.net' 32 HTTPS = True 33 API_KEY = '309418' 34 SERVICETYPEID = '4430731' 44 35 45 36 class CustomRemitaRequestPaymentStatusPageStudent( … … 119 110 120 111 @property 121 def lineitems(self):112 def demo_lineitems(self): 122 113 ba1 = self.context.amount_auth / 2 123 114 ba2 = self.context.amount_auth / 2 … … 138 129 139 130 @property 140 def li ve_lineitems(self):131 def lineitems(self): 141 132 inst_bankcode = "000" 142 133 inst_acct = "0040217361011" … … 255 246 256 247 @property 257 def lineitems(self):248 def demo_lineitems(self): 258 249 lineitems = ( 259 250 {"lineItemsId":"itemid1","beneficiaryName":"Klaus Mueller", … … 267 258 268 259 @property 269 def demo_lineitems(self):260 def lineitems(self): 270 261 provider_amt = 1000.0 271 262 if self.context.__parent__.applicant_id.startswith('pre'):
Note: See TracChangeset for help on using the changeset viewer.