Changeset 16856 for main/waeup.uniben/trunk
- Timestamp:
- 3 Mar 2022, 09:00:10 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/export.py
r16855 r16856 89 89 'password', 'state', 'history', 'container_code', 'application_number', 90 90 'display_fullname', 'application_date') 91 92 def export(self, applicants, filepath=None): 93 """Exports flc applicants only 94 """ 95 writer, outfile = self.get_csv_writer(filepath) 96 for applicant in applicants: 97 if applicant.__parent__.code.startswith('flc'): 98 self.write_item(applicant, writer) 99 return self.close_outfile(filepath, outfile)
Note: See TracChangeset for help on using the changeset viewer.