[8926] | 1 | ## $Id: export.py 17642 2023-11-13 18:14:57Z 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 |
---|
[17642] | 22 | from waeup.kofa.applicants.export import ( |
---|
| 23 | ApplicantExporter, ApplicantPaymentExporter) |
---|
[13979] | 24 | from waeup.kofa.utils.helpers import iface_names |
---|
[8926] | 25 | from kofacustom.nigeria.applicants.interfaces import ( |
---|
[17642] | 26 | INigeriaUGApplicant, INigeriaPGApplicant, |
---|
| 27 | INigeriaApplicantOnlinePayment) |
---|
[8926] | 28 | |
---|
[12080] | 29 | class NigeriaApplicantExporter(ApplicantExporter): |
---|
[8926] | 30 | """Exporter for Nigeria Applicants. |
---|
| 31 | """ |
---|
| 32 | |
---|
[13092] | 33 | # In contrast to ApplicantExporter we export all fields |
---|
| 34 | # and attributes of the interfaces. |
---|
[8926] | 35 | fields = tuple(sorted(set( |
---|
[13979] | 36 | iface_names(INigeriaUGApplicant) + |
---|
| 37 | iface_names(INigeriaPGApplicant) + |
---|
| 38 | iface_names(IApplicantBaseData) |
---|
| 39 | ))) + ( |
---|
| 40 | 'password', 'state', 'history', 'container_code', 'application_number', |
---|
| 41 | 'display_fullname', 'application_date') |
---|
[9582] | 42 | |
---|
| 43 | def mangle_value(self, value, name, context=None): |
---|
[13155] | 44 | if name == 'jamb_subjects' and value: |
---|
| 45 | value = value.replace('\n', '++') |
---|
[9582] | 46 | if '_result' in name and value: |
---|
| 47 | value = [eval(entry.to_string()) for entry in value] |
---|
| 48 | return super( |
---|
[12080] | 49 | NigeriaApplicantExporter, self).mangle_value( |
---|
[9582] | 50 | value, name, context=context) |
---|
[17642] | 51 | |
---|
| 52 | |
---|
| 53 | class NigeriaApplicantPaymentExporter(ApplicantPaymentExporter): |
---|
| 54 | """ |
---|
| 55 | """ |
---|
| 56 | |
---|
| 57 | fields = tuple(sorted(iface_names( |
---|
| 58 | INigeriaApplicantOnlinePayment, |
---|
| 59 | exclude_attribs=False, |
---|
| 60 | omit=['display_item', 'p_option']))) + ( |
---|
| 61 | 'applicant_id', |
---|
| 62 | 'reg_number', |
---|
| 63 | 'display_fullname',) |
---|