Changeset 15796 for main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/studentsbrowser.py
- Timestamp:
- 12 Nov 2019, 08:23:13 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/etranzact/studentsbrowser.py
r15772 r15796 52 52 grok.require('waeup.payStudent') 53 53 icon = 'actionicon_pay.png' 54 text = _('Pay via Etranzact ')54 text = _('Pay via Etranzact WebConnect') 55 55 target = 'goto_etranzact' 56 56 … … 70 70 grok.require('waeup.payStudent') 71 71 icon = 'actionicon_call.png' 72 text = _('Requery Etranzact History')72 text = _('Requery Etranzact WebConnect History') 73 73 target = 'requery_history' 74 74 … … 78 78 self.context.student.current_session, self.context): 79 79 return '' 80 if self.context.p_state in ('paid', 'waived' ):80 if self.context.p_state in ('paid', 'waived', 'scholarship'): 81 81 return '' 82 82 return self.view.url(self.view.context, self.target) … … 194 194 self.context.student.current_session, self.context): 195 195 return 196 if self.context.p_state in ('paid', 'waived' ):196 if self.context.p_state in ('paid', 'waived', 'scholarship'): 197 197 self.flash(_('This ticket has already been paid.'), type='danger') 198 198 return
Note: See TracChangeset for help on using the changeset viewer.