Changeset 13984
- Timestamp:
- 23 Jun 2016, 11:26:36 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/export.py
r13861 r13984 20 20 import grok 21 21 from waeup.kofa.applicants.interfaces import IApplicantBaseData 22 from waeup.kofa.utils.helpers import iface_names 22 23 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter 23 24 from kofacustom.nigeria.applicants.interfaces import ( … … 30 31 31 32 fields = tuple(sorted(set( 32 INigeriaUGApplicant.names() + 33 INigeriaPGApplicant.names() + 34 IApplicantBaseData.names() + 35 IUnibenRegistration.names() 36 ))) 33 iface_names(INigeriaUGApplicant) + 34 iface_names(INigeriaPGApplicant) + 35 iface_names(IApplicantBaseData) + 36 iface_names(IUnibenRegistration) 37 ))) + ( 38 'password', 'state', 'history', 'container_code', 'application_number', 39 'display_fullname', 'application_date') 37 40
Note: See TracChangeset for help on using the changeset viewer.