Changeset 17778
- Timestamp:
- 13 May 2024, 20:34:40 (6 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.fceokene/trunk/src/waeup/fceokene/applicants/export.py
r17392 r17778 24 24 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter 25 25 from kofacustom.nigeria.applicants.interfaces import INigeriaUGApplicant 26 from waeup.fceokene.applicants.interfaces import ( 27 ICustomUGApplicant, ITPURegistration, IUTPRegistration) 26 from waeup.fceokene.applicants.interfaces import ICustomApplicant 28 27 from waeup.fceokene.applicants.schools_tpu import SCHOOLS_TPU 29 28 from waeup.fceokene.applicants.schools_utp import SCHOOLS_UTP … … 33 32 """ 34 33 35 fields = tuple(sorted(set( 36 iface_names(ICustomUGApplicant) + 37 iface_names(INigeriaUGApplicant) + 38 iface_names(IApplicantBaseData) + 39 iface_names(ITPURegistration) + 40 iface_names(IUTPRegistration) 41 ))) + ( 34 fields = tuple(sorted(iface_names(ICustomApplicant))) + ( 42 35 'password', 'state', 'history', 'container_code', 'application_number', 43 36 'display_fullname', 'application_date',)
Note: See TracChangeset for help on using the changeset viewer.