Changeset 14020 for main/waeup.uniben/trunk/src/waeup/uniben
- Timestamp:
- 7 Jul 2016, 06:44:36 (8 years ago)
- Location:
- main/waeup.uniben/trunk/src/waeup/uniben/applicants
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/export.py
r13984 r14020 23 23 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter 24 24 from kofacustom.nigeria.applicants.interfaces import ( 25 INigeriaUGApplicant, INigeriaPGApplicant )25 INigeriaUGApplicant, INigeriaPGApplicant, IBankAccount) 26 26 from waeup.uniben.applicants.interfaces import IUnibenRegistration 27 27 … … 34 34 iface_names(INigeriaPGApplicant) + 35 35 iface_names(IApplicantBaseData) + 36 iface_names(IUnibenRegistration) 36 iface_names(IUnibenRegistration) + 37 iface_names(IBankAccount) 37 38 ))) + ( 38 39 'password', 'state', 'history', 'container_code', 'application_number', -
main/waeup.uniben/trunk/src/waeup/uniben/applicants/interfaces.py
r13831 r14020 166 166 value_type = schema.Choice(source=RegTypesSource()), 167 167 required = True, 168 default = [],168 defaultFactory=list, 169 169 ) 170 170
Note: See TracChangeset for help on using the changeset viewer.