1 | ## $Id: export.py 16918 2022-04-13 08:36:53Z 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 | import sys |
---|
22 | from waeup.kofa.applicants.interfaces import IApplicantBaseData |
---|
23 | from waeup.kofa.utils.helpers import iface_names |
---|
24 | from kofacustom.nigeria.applicants.export import NigeriaApplicantExporter |
---|
25 | from kofacustom.nigeria.applicants.interfaces import INigeriaUGApplicant |
---|
26 | from waeup.fceokene.applicants.interfaces import ( |
---|
27 | ICustomUGApplicant, ITPURegistration, IUTPRegistration) |
---|
28 | from waeup.fceokene.applicants.schools_tpu import SCHOOLS_TPU as SCHOOLS |
---|
29 | from waeup.fceokene.applicants.schools_utp import SCHOOLS_UTP |
---|
30 | |
---|
31 | class CustomApplicantExporter(NigeriaApplicantExporter): |
---|
32 | """Exporter for Nigeria Applicants. |
---|
33 | """ |
---|
34 | |
---|
35 | fields = tuple(sorted(set( |
---|
36 | iface_names(ICustomUGApplicant) + |
---|
37 | iface_names(INigeriaUGApplicant) + |
---|
38 | iface_names(IApplicantBaseData) + |
---|
39 | iface_names(ITPURegistration) + |
---|
40 | iface_names(IUTPRegistration) |
---|
41 | ))) + ( |
---|
42 | 'password', 'state', 'history', 'container_code', 'application_number', |
---|
43 | 'display_fullname', 'application_date',) |
---|
44 | |
---|
45 | def mangle_value(self, value, name, context=None): |
---|
46 | """ |
---|
47 | """ |
---|
48 | SCHOOLS.update(SCHOOLS_UTP) |
---|
49 | if name == 'school' and value is not None: |
---|
50 | try: |
---|
51 | value = '%s - %s - %s' % ( |
---|
52 | SCHOOLS[value][0], SCHOOLS[value][1], SCHOOLS[value][2]) |
---|
53 | except: |
---|
54 | pass |
---|
55 | if name == 'subj_comb' and value is not None: |
---|
56 | value = value.code |
---|
57 | return super( |
---|
58 | CustomApplicantExporter, self).mangle_value( |
---|
59 | value, name, context=context) |
---|