Changeset 7248 for main/waeup.sirp/trunk/src/waeup/sirp/students/browser.py
- Timestamp:
- 1 Dec 2011, 13:01:24 (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.sirp/trunk/src/waeup/sirp/students/browser.py
r7240 r7248 1080 1080 for key in self.context.keys(): 1081 1081 ticket = self.context[key] 1082 if ticket.p_category == p_category and \ 1082 if ticket.p_state == 'paid' and\ 1083 ticket.p_category == p_category and \ 1083 1084 ticket.p_item == p_item and \ 1084 1085 ticket.p_session == p_session: 1085 1086 self.flash( 1086 'This payment ticket already exists.')1087 'This type of payment ticket exists and ticket has been paid.') 1087 1088 self.redirect(self.url(self.context)) 1088 1089 return
Note: See TracChangeset for help on using the changeset viewer.