- Timestamp:
- 30 Oct 2014, 16:54:24 (10 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/interswitch/browser.py
r11767 r11915 81 81 gateway_host = None 82 82 gateway_url = None 83 https = False 83 84 84 85 def update(self): … … 88 89 student = self.context.student 89 90 success, msg, log = query_interswitch( 90 self.context, self.product_id, self.gateway_host, self.gateway_url) 91 self.context, self.product_id, 92 self.gateway_host, self.gateway_url, 93 self.https) 91 94 student.writeLogMessage(self, log) 92 95 if not success: … … 114 117 gateway_host = None 115 118 gateway_url = None 119 https = False 116 120 117 121 def update(self): … … 121 125 applicant = self.context.__parent__ 122 126 success, msg, log = query_interswitch( 123 self.context, self.product_id, self.gateway_host, self.gateway_url) 127 self.context, self.product_id, 128 self.gateway_host, self.gateway_url, 129 self.https) 124 130 applicant.writeLogMessage(self, log) 125 131 if not success:
Note: See TracChangeset for help on using the changeset viewer.