- Timestamp:
- 10 Aug 2015, 16:33:24 (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/interswitch/browser.py
r13044 r13197 63 63 @property 64 64 def target_url(self): 65 if self.context.p_state == 'paid':65 if self.context.p_state in ('paid', 'waived'): 66 66 return '' 67 67 return self.view.url(self.view.context, self.target) … … 85 85 86 86 def update(self): 87 if self.context.p_state == 'paid':87 if self.context.p_state in ('paid', 'waived'): 88 88 self.flash(_('This ticket has already been paid.'), type='warning') 89 89 return
Note: See TracChangeset for help on using the changeset viewer.