- Timestamp:
- 7 Sep 2020, 07:21:09 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/payment.py
r16224 r16225 46 46 """ 47 47 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') \ 50 49 or self.__parent__.special): 51 50 wf_info = IWorkflowInfo(self.__parent__) … … 64 63 """ 65 64 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): 69 67 wf_info = IWorkflowInfo(self.__parent__) 70 68 try:
Note: See TracChangeset for help on using the changeset viewer.