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