Changeset 13197
- Timestamp:
- 10 Aug 2015, 16:33:24 (9 years ago)
- Location:
- main/kofacustom.nigeria/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/CHANGES.txt
r13160 r13197 4 4 1.2 (unreleased) 5 5 ================ 6 7 - Do not allow to requery waived payments. 6 8 7 9 - Replace `jamb_subjects` field by the list-of-choices field -
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.