- Timestamp:
- 7 Mar 2024, 12:57:10 (8 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.udss/trunk/src/kofacustom/udss/applicants/export.py
r17689 r17711 19 19 """ 20 20 import grok 21 from waeup.kofa.applicants.export import ApplicantExporter 21 22 from waeup.kofa.applicants.interfaces import IApplicantBaseData 22 23 from waeup.kofa.utils.helpers import iface_names 23 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter24 from kofacustom.nigeria.applicants.interfaces import (25 INigeriaUGApplicant, INigeriaPGApplicant)26 24 from kofacustom.udss.applicants.interfaces import ( 27 ICustomUGApplicant, ICustomPGApplicant)25 ICustomUGApplicant,) 28 26 29 class CustomApplicantExporter( NigeriaApplicantExporter):27 class CustomApplicantExporter(ApplicantExporter): 30 28 """Exporter for Custom Applicants. 31 29 """ … … 33 31 fields = tuple(sorted(set( 34 32 iface_names(ICustomUGApplicant) + 35 iface_names(ICustomPGApplicant) +36 iface_names(INigeriaUGApplicant) +37 iface_names(INigeriaPGApplicant) +38 33 iface_names(IApplicantBaseData) 39 34 ))) + (
Note: See TracChangeset for help on using the changeset viewer.