Ignore:
Timestamp:
7 Sep 2020, 07:21:09 (4 years ago)
Author:
Henrik Bettermann
Message:

Payment category is called 'transcript'.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/waeup.kofa/trunk/src/waeup/kofa/applicants/payment.py

    r16224 r16225  
    4646        """
    4747        if self.__parent__.state != PAID \
    48             and (self.p_category == 'application' \
    49                  or self.p_category.startswith('tsc') \
     48            and (self.p_category in ('application', 'transcript') \
    5049                 or self.__parent__.special):
    5150            wf_info = IWorkflowInfo(self.__parent__)
     
    6463        """
    6564        if self.__parent__.state != PAID \
    66             and (self.p_category == 'application' \
    67                 or self.p_category.startswith('tsc') \
    68                 or self.__parent__.special):
     65            and (self.p_category in ('application', 'transcript') \
     66                 or self.__parent__.special):
    6967            wf_info = IWorkflowInfo(self.__parent__)
    7068            try:
Note: See TracChangeset for help on using the changeset viewer.