Ignore:
Timestamp:
13 May 2014, 21:34:37 (11 years ago)
Author:
Henrik Bettermann
Message:

Use init_update and samePaymentMade methods

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.uniben/trunk/src/waeup/uniben/students/utils.py

    r11479 r11644  
    203203            category = 'hostel_maintenance'
    204204        # 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
    212207        if self._isPaymentDisabled(p_session, category, student):
    213208            return _('Payment temporarily disabled.'), None
Note: See TracChangeset for help on using the changeset viewer.