1 | ## $Id: export.py 16956 2022-05-25 06:49:12Z 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 | """ |
---|
20 | import grok |
---|
21 | from waeup.kofa.applicants.interfaces import IApplicantBaseData |
---|
22 | from waeup.kofa.utils.helpers import iface_names |
---|
23 | from waeup.kofa.applicants.export import ApplicantRefereeReportExporter |
---|
24 | from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter |
---|
25 | from kofacustom.nigeria.applicants.interfaces import ( |
---|
26 | INigeriaUGApplicant, INigeriaPGApplicant) |
---|
27 | from waeup.aaue.applicants.interfaces import ( |
---|
28 | ICustomUGApplicant, |
---|
29 | ITranscriptApplicant, |
---|
30 | ICertificateRequest, |
---|
31 | ICustomApplicantRefereeReport, |
---|
32 | IVerificationRequest, |
---|
33 | IFedexRequest, |
---|
34 | IRecruitment, |
---|
35 | ISendByEmailRequest) |
---|
36 | |
---|
37 | class CustomApplicantExporter(NigeriaApplicantExporter): |
---|
38 | """Exporter for AAUE Applicants. |
---|
39 | """ |
---|
40 | |
---|
41 | fields = tuple(sorted(set( |
---|
42 | iface_names(ICustomUGApplicant) + |
---|
43 | #iface_names(INigeriaUGApplicant) + |
---|
44 | iface_names(INigeriaPGApplicant) + |
---|
45 | iface_names(IApplicantBaseData) + |
---|
46 | iface_names(ITranscriptApplicant) + |
---|
47 | iface_names(ICertificateRequest) + |
---|
48 | iface_names(IVerificationRequest) + |
---|
49 | iface_names(IFedexRequest) + |
---|
50 | iface_names(IRecruitment) + |
---|
51 | iface_names(ISendByEmailRequest) |
---|
52 | ))) + ( |
---|
53 | 'password', 'state', 'history', 'container_code', 'application_number', |
---|
54 | 'display_fullname', 'application_date') |
---|
55 | |
---|
56 | class CustomApplicantRefereeReportExporter(ApplicantRefereeReportExporter): |
---|
57 | |
---|
58 | fields = tuple(sorted(iface_names( |
---|
59 | ICustomApplicantRefereeReport, |
---|
60 | exclude_attribs=False))) + ( |
---|
61 | 'applicant_id', |
---|
62 | 'reg_number', |
---|
63 | 'display_fullname',) |
---|
64 | |
---|