source: main/waeup.aaue/trunk/src/waeup/aaue/applicants/export.py @ 16871

Last change on this file since 16871 was 16786, checked in by Henrik Bettermann, 3 years ago

Customize referee report form.

  • Property svn:keywords set to Id
File size: 2.1 KB
RevLine 
[11546]1## $Id: export.py 16786 2022-02-08 21:35:52Z henrik $
2##
3## Copyright (C) 2012 Uli Fouquet & Henrik Bettermann
4## This program is free software; you can redistribute it and/or modify
5## it under the terms of the GNU General Public License as published by
6## the Free Software Foundation; either version 2 of the License, or
7## (at your option) any later version.
8##
9## This program is distributed in the hope that it will be useful,
10## but WITHOUT ANY WARRANTY; without even the implied warranty of
11## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12## GNU General Public License for more details.
13##
14## You should have received a copy of the GNU General Public License
15## along with this program; if not, write to the Free Software
16## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17##
18"""Exporters for applicant-related stuff.
19"""
20import grok
21from waeup.kofa.applicants.interfaces import IApplicantBaseData
[13980]22from waeup.kofa.utils.helpers import iface_names
[16786]23from waeup.kofa.applicants.export import ApplicantRefereeReportExporter
[12081]24from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter
[11546]25from kofacustom.nigeria.applicants.interfaces import (
26    INigeriaUGApplicant, INigeriaPGApplicant)
[13544]27from waeup.aaue.applicants.interfaces import (
[16786]28    ICustomUGApplicant, ITranscriptApplicant, ICertificateRequest,
29    ICustomApplicantRefereeReport)
[11546]30
[12081]31class CustomApplicantExporter(NigeriaApplicantExporter):
[11546]32    """Exporter for Nigeria Applicants.
33    """
34
35    fields = tuple(sorted(set(
[13980]36        iface_names(ICustomUGApplicant) +
37        #iface_names(INigeriaUGApplicant) +
38        iface_names(INigeriaPGApplicant) +
39        iface_names(IApplicantBaseData) +
[14304]40        iface_names(ITranscriptApplicant) +
41        iface_names(ICertificateRequest)
[13980]42        ))) + (
43        'password', 'state', 'history', 'container_code', 'application_number',
44        'display_fullname', 'application_date')
[16786]45
46class CustomApplicantRefereeReportExporter(ApplicantRefereeReportExporter):
47
48    fields = tuple(sorted(iface_names(
49        ICustomApplicantRefereeReport,
50        exclude_attribs=False))) + (
51              'applicant_id',
52              'reg_number',
53              'display_fullname',)
54
Note: See TracBrowser for help on using the repository browser.