Changeset 11644 for main/waeup.uniben/trunk/src/waeup/uniben/students
- Timestamp:
- 13 May 2014, 21:34:37 (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py
r11479 r11644 203 203 category = 'hostel_maintenance' 204 204 # Create ticket. 205 for key in student['payments'].keys(): 206 ticket = student['payments'][key] 207 if ticket.p_state == 'paid' and\ 208 ticket.p_category == category and \ 209 ticket.p_item == p_item and \ 210 ticket.p_session == p_session: 211 return _('This type of payment has already been made.'), None 205 if self.samePaymentMade(student, category, p_item, p_session): 206 return _('This type of payment has already been made.'), None 212 207 if self._isPaymentDisabled(p_session, category, student): 213 208 return _('Payment temporarily disabled.'), None
Note: See TracChangeset for help on using the changeset viewer.