1 | ## $Id: export.py 17199 2022-12-01 14:37:50Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2014 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 kofacustom.nigeria.applicants.export import NigeriaApplicantExporter |
---|
24 | from kofacustom.lpng.applicants.interfaces import ( |
---|
25 | ICustomApplicant, STATES, LGAS, WARDS, PUNITS) |
---|
26 | |
---|
27 | class CustomApplicantExporter(NigeriaApplicantExporter): |
---|
28 | """Exporter for Custom Applicants. |
---|
29 | """ |
---|
30 | |
---|
31 | fields = tuple(sorted(set( |
---|
32 | iface_names(ICustomApplicant) + |
---|
33 | iface_names(IApplicantBaseData) |
---|
34 | ))) + ( |
---|
35 | 'password', 'state', 'history', 'container_code', 'application_number', |
---|
36 | 'display_fullname', 'application_date') |
---|
37 | |
---|
38 | def mangle_value(self, value, name, context=None): |
---|
39 | """The mangler determines the codes of the atributes `course1`, |
---|
40 | `course2` and `course_admitted`. It furthermore prepares the |
---|
41 | history messages and adds a hash symbol at the end of the phone number |
---|
42 | to avoid annoying automatic number transformation by Excel or Calc. |
---|
43 | """ |
---|
44 | if name == 'federalstate': |
---|
45 | value = STATES.get(value, None) |
---|
46 | if name == 'lga': |
---|
47 | value = LGAS.get(value, None) |
---|
48 | if name == 'ward': |
---|
49 | value = WARDS.get(value, None) |
---|
50 | if name == 'punit': |
---|
51 | value = PUNITS.get(value, None) |
---|
52 | return super( |
---|
53 | CustomApplicantExporter, self).mangle_value( |
---|
54 | value, name, context=context) |
---|