Changeset 16224 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 7 Sep 2020, 07:17:43 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/payment.py
r15553 r16224 46 46 """ 47 47 if self.__parent__.state != PAID \ 48 and (self.p_category == 'application' or self.__parent__.special): 48 and (self.p_category == 'application' \ 49 or self.p_category.startswith('tsc') \ 50 or self.__parent__.special): 49 51 wf_info = IWorkflowInfo(self.__parent__) 50 52 try: … … 62 64 """ 63 65 if self.__parent__.state != PAID \ 64 and (self.p_category == 'application' or self.__parent__.special): 66 and (self.p_category == 'application' \ 67 or self.p_category.startswith('tsc') \ 68 or self.__parent__.special): 65 69 wf_info = IWorkflowInfo(self.__parent__) 66 70 try:
Note: See TracChangeset for help on using the changeset viewer.