Changeset 17442
- Timestamp:
- 20 Jun 2023, 07:53:50 (17 months ago)
- Location:
- main/waeup.aaue/trunk/src/waeup/aaue
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.aaue/trunk/src/waeup/aaue/interswitch/browser.py
r17441 r17442 156 156 itemlist = xmldoc.getElementsByTagName('item_detail') 157 157 for s in itemlist: 158 xmlitems += "%s: %s, N%s, %s (%s) " % ( 159 s.attributes['item_id'].value, 158 xmlitems += "%s (%s %s, %s (%s)), " % ( 160 159 s.attributes['item_name'].value, 160 u'\u20a6', 161 161 int(s.attributes['item_amt'].value)/100, 162 162 s.attributes['acct_num'].value, … … 355 355 itemlist = xmldoc.getElementsByTagName('item_detail') 356 356 for s in itemlist: 357 xmlitems += "%s: %s, %s %s, %s (%s) " % ( 358 s.attributes['item_id'].value, 357 xmlitems += "%s (%s %s, %s (%s)), " % ( 359 358 s.attributes['item_name'].value, 360 359 u'\u20a6', -
main/waeup.aaue/trunk/src/waeup/aaue/students/browser.py
r17441 r17442 325 325 form_fields = grok.AutoFields(ICustomStudentOnlinePayment).omit( 326 326 'provider_amt', 'gateway_amt', 'thirdparty_amt', 'p_item', 327 'p_split_data', 'p_combi' )327 'p_split_data', 'p_combi', 'r_card_num', 'r_payment_link') 328 328 form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') 329 329 form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') … … 336 336 except KeyError: 337 337 academic_session = None 338 text = '\n \n The Amount Authorized is inclusive of: %s and also of NGN %d Interswitch surcharge.' % (338 text = '\nThe Amount Authorized is inclusive of: %s Interswitch surcharge (NGN %d).' % ( 339 339 getattr(self.context, 'p_split_data'), self.context.gateway_amt) 340 340
Note: See TracChangeset for help on using the changeset viewer.