Ignore:
Timestamp:
7 Mar 2024, 12:57:10 (8 months ago)
Author:
Henrik Bettermann
Message:

Simplify application

File:
1 edited

Legend:

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

    r17689 r17711  
    1919"""
    2020import grok
     21from waeup.kofa.applicants.export import ApplicantExporter
    2122from waeup.kofa.applicants.interfaces import IApplicantBaseData
    2223from waeup.kofa.utils.helpers import iface_names
    23 from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter
    24 from kofacustom.nigeria.applicants.interfaces import (
    25     INigeriaUGApplicant, INigeriaPGApplicant)
    2624from kofacustom.udss.applicants.interfaces import (
    27     ICustomUGApplicant, ICustomPGApplicant)
     25    ICustomUGApplicant,)
    2826
    29 class CustomApplicantExporter(NigeriaApplicantExporter):
     27class CustomApplicantExporter(ApplicantExporter):
    3028    """Exporter for Custom Applicants.
    3129    """
     
    3331    fields = tuple(sorted(set(
    3432        iface_names(ICustomUGApplicant) +
    35         iface_names(ICustomPGApplicant) +
    36         iface_names(INigeriaUGApplicant) +
    37         iface_names(INigeriaPGApplicant) +
    3833        iface_names(IApplicantBaseData)
    3934        ))) + (
Note: See TracChangeset for help on using the changeset viewer.