- Timestamp:
- 10 Jul 2022, 11:47:16 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/utils.py
r17016 r17018 55 55 #: over to the students section. 56 56 ADDITIONAL_FILES = (('Test File','testfile'),) 57 58 # A list of states which enable balance payments (not used in base package) 59 BALANCE_PAYMENT_STATES = () 57 60 58 61 def setPaymentDetails(self, container, payment, applicant): … … 93 96 as selected by the applicant. 94 97 """ 95 if applicant.state not in (PAID, ADMITTED, SUBMITTED, PROCESSED):98 if applicant.state not in self.BALANCE_PAYMENT_STATES: 96 99 return _('Wrong state.'), None 97 100 p_item = u'Balance'
Note: See TracChangeset for help on using the changeset viewer.