Changeset 17642 for main/kofacustom.nigeria/trunk/src/kofacustom
- Timestamp:
- 13 Nov 2023, 18:14:57 (12 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/export.py
r13979 r17642 20 20 import grok 21 21 from waeup.kofa.applicants.interfaces import IApplicantBaseData 22 from waeup.kofa.applicants.export import ApplicantExporter 22 from waeup.kofa.applicants.export import ( 23 ApplicantExporter, ApplicantPaymentExporter) 23 24 from waeup.kofa.utils.helpers import iface_names 24 25 from kofacustom.nigeria.applicants.interfaces import ( 25 INigeriaUGApplicant, INigeriaPGApplicant) 26 INigeriaUGApplicant, INigeriaPGApplicant, 27 INigeriaApplicantOnlinePayment) 26 28 27 29 class NigeriaApplicantExporter(ApplicantExporter): … … 47 49 NigeriaApplicantExporter, self).mangle_value( 48 50 value, name, context=context) 51 52 53 class NigeriaApplicantPaymentExporter(ApplicantPaymentExporter): 54 """ 55 """ 56 57 fields = tuple(sorted(iface_names( 58 INigeriaApplicantOnlinePayment, 59 exclude_attribs=False, 60 omit=['display_item', 'p_option']))) + ( 61 'applicant_id', 62 'reg_number', 63 'display_fullname',)
Note: See TracChangeset for help on using the changeset viewer.