Changeset 11452


Ignore:
Timestamp:
27 Feb 2014, 10:05:57 (11 years ago)
Author:
Henrik Bettermann
Message:

Only school fee payments are not allowed.

File:
1 edited

Legend:

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

    r11451 r11452  
    338338    def _isPaymentDisabled(self, p_session, category, student):
    339339        academic_session = self._getSessionConfiguration(p_session)
    340         if 'sf_all' in academic_session.payment_disabled:
     340        if category == 'schoolfee' and \
     341            'sf_all' in academic_session.payment_disabled:
    341342            return True
    342343        return False
Note: See TracChangeset for help on using the changeset viewer.