- Timestamp:
- 22 Jul 2024, 17:15:58 (4 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
main/waeup.uniben/trunk/src/waeup/uniben/applicants/export.py
r16885 r17857 22 22 from waeup.kofa.applicants.export import ApplicantPaymentExporter 23 23 from waeup.kofa.utils.helpers import iface_names 24 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter 24 from kofacustom.nigeria.applicants.export import (NigeriaApplicantExporter, 25 NigeriaApplicantPaymentExporter) 25 26 from kofacustom.nigeria.applicants.interfaces import ( 26 27 INigeriaUGApplicant, INigeriaPGApplicant, IBankAccount) … … 44 45 'display_fullname', 'application_date') 45 46 46 class CustomApplicantPaymentExporter( ApplicantPaymentExporter):47 class CustomApplicantPaymentExporter(NigeriaApplicantPaymentExporter): 47 48 """Exporter for OnlinePayment instances. 48 49 """ … … 50 51 @property 51 52 def fields(self): 52 return super(CustomApplicantPaymentExporter, self).fields + ( 53 'r_pay_reference',) 53 return super(CustomApplicantPaymentExporter, self).fields 54 54 55 55 class PGApplicantExporter(NigeriaApplicantExporter):
Note: See TracChangeset for help on using the changeset viewer.