Ignore:
Timestamp:
10 May 2024, 22:06:39 (4 months ago)
Author:
Henrik Bettermann
Message:

Use correct interface.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/applicants/export.py

    r17758 r17759  
    2323from waeup.kofa.applicants.export import ApplicantRefereeReportExporter
    2424from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter
    25 from kofacustom.nigeria.applicants.interfaces import (
    26     INigeriaUGApplicant, INigeriaPGApplicant)
    2725from kofacustom.iuokada.applicants.interfaces import (
    28     ICustomUGApplicant, ICustomPGApplicant,
    29     ITranscriptApplicant,
     26    ICustomApplicant,
    3027    ICustomApplicantRefereeReport)
    3128
     
    3431    """
    3532
    36     fields = tuple(sorted(set(
    37         iface_names(ICustomUGApplicant) +
    38         iface_names(ICustomPGApplicant) +
    39         iface_names(INigeriaUGApplicant) +
    40         iface_names(INigeriaPGApplicant) +
    41         iface_names(IApplicantBaseData) +
    42         iface_names(ITranscriptApplicant)
    43         ))) + (
     33    fields = tuple(sorted(iface_names(ICustomApplicant))) + (
    4434        'password', 'state', 'history', 'container_code', 'application_number',
    4535        'display_fullname', 'application_date', 'department', 'college',)
Note: See TracChangeset for help on using the changeset viewer.