- Timestamp:
- 19 May 2021, 07:47:21 (4 years ago)
- Location:
- main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/payoutletbrowser.py
r16246 r16484 80 80 grok.context(INigeriaStudentOnlinePayment) 81 81 grok.require('waeup.payStudent') 82 grok.order( 3)82 grok.order(10) 83 83 icon = 'actionicon_pay.png' 84 84 text = _('Pay via Etranzact PayOutlet') … … 102 102 grok.require('waeup.payStudent') 103 103 104 buttonname = _(' Submit to Etranzact')104 buttonname = _('Requery now') 105 105 label = _('Requery Etranzact PayOutlet History') 106 106 action = 'query_payoutlet_history' … … 131 131 grok.template('enterpin') 132 132 133 buttonname = _(' Submit to Etranzact')133 buttonname = _('Requery now') 134 134 label = _('Requery Etranzact PayOutlet History') 135 135 action = 'query_payoutlet_history' -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/studentsbrowser.py
r16379 r16484 52 52 53 53 class EtranzactActionButtonStudent(ManageActionButton): 54 grok.order( 1)54 grok.order(8) 55 55 grok.context(INigeriaOnlinePayment) 56 56 grok.view(NOPDPStudent) … … 70 70 71 71 class EtranzactRequeryActionButtonStudent(ManageActionButton): 72 grok.order( 2)72 grok.order(9) 73 73 grok.context(INigeriaOnlinePayment) 74 74 grok.view(NOPDPStudent) -
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/tests.py
r16378 r16484 261 261 self.browser.getLink("Pay via Etranzact PayOutlet").click() 262 262 self.browser.getControl(name="confirmation_number").value = '600854291572447457669' 263 self.browser.getControl(" Submit to Etranzact").click()263 self.browser.getControl("Requery now").click() 264 264 # This response is strange 265 265 self.assertTrue('-3:Wrong Setup' in self.browser.contents) … … 267 267 # This confirmation number exists 268 268 self.browser.getControl(name="confirmation_number").value = '500854291572447457669' 269 self.browser.getControl(" Submit to Etranzact").click()269 self.browser.getControl("Requery now").click() 270 270 self.assertTrue('Wrong amount' in self.browser.contents) 271 271 # Some attributes have been set
Note: See TracChangeset for help on using the changeset viewer.