Changeset 13982
- Timestamp:
- 23 Jun 2016, 11:26:13 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/export.py
r13095 r13982 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 INigeriaUGApplicant … … 29 30 30 31 fields = tuple(sorted(set( 31 ICustomUGApplicant.names() + 32 #INigeriaUGApplicant.names() + 33 IApplicantBaseData.names() 34 ))) 32 iface_names(ICustomUGApplicant) + 33 #iface_names(INigeriaUGApplicant) + 34 iface_names(IApplicantBaseData) 35 ))) + ( 36 'password', 'state', 'history', 'container_code', 'application_number', 37 'display_fullname', 'application_date')
Note: See TracChangeset for help on using the changeset viewer.