- Timestamp:
- 10 May 2024, 22:06:39 (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/export.py
r17758 r17759 23 23 from waeup.kofa.applicants.export import ApplicantRefereeReportExporter 24 24 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter 25 from kofacustom.nigeria.applicants.interfaces import (26 INigeriaUGApplicant, INigeriaPGApplicant)27 25 from kofacustom.iuokada.applicants.interfaces import ( 28 ICustomUGApplicant, ICustomPGApplicant, 29 ITranscriptApplicant, 26 ICustomApplicant, 30 27 ICustomApplicantRefereeReport) 31 28 … … 34 31 """ 35 32 36 fields = tuple(sorted(set( 37 iface_names(ICustomUGApplicant) + 38 iface_names(ICustomPGApplicant) + 39 iface_names(INigeriaUGApplicant) + 40 iface_names(INigeriaPGApplicant) + 41 iface_names(IApplicantBaseData) + 42 iface_names(ITranscriptApplicant) 43 ))) + ( 33 fields = tuple(sorted(iface_names(ICustomApplicant))) + ( 44 34 'password', 'state', 'history', 'container_code', 'application_number', 45 35 'display_fullname', 'application_date', 'department', 'college',)
Note: See TracChangeset for help on using the changeset viewer.