Changeset 17200 for main/waeup.kofa/trunk/src/waeup/kofa
- Timestamp:
- 1 Dec 2022, 15:40:10 (2 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kofa/trunk/src/waeup/kofa/applicants/browser.py
r17018 r17200 1840 1840 grok.name('start_export') 1841 1841 1842 EXPORTER_LIST = ('applicants', 1843 'applicantpayments', 1844 'applicantrefereereports') 1845 1842 1846 def update(self): 1843 1847 utils = queryUtility(IKofaUtils) … … 1852 1856 container_code = self.context.__parent__.code 1853 1857 # Start first exporter 1854 for exporter in ('applicants', 1855 'applicantpayments', 1856 'applicantrefereereports'): 1858 for exporter in self.EXPORTER_LIST: 1857 1859 job_id = self.context.start_export_job(exporter, 1858 1860 self.request.principal.id,
Note: See TracChangeset for help on using the changeset viewer.