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