source: main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/applicants/applicant.py @ 11767

Last change on this file since 11767 was 11616, checked in by Henrik Bettermann, 10 years ago

Define applicant_student_mapping accordingly.

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1## $Id: applicant.py 11616 2014-05-01 17:55:30Z henrik $
2##
3## Copyright (C) 2011 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
19import grok
20from zope.interface import implementedBy
21from waeup.kofa.applicants.applicant import Applicant, ApplicantFactory
22from waeup.kofa.utils.helpers import attrs_to_fields
23from kofacustom.nigeria.applicants.interfaces import(
24    INigeriaApplicant,
25    INigeriaUGApplicantEdit, INigeriaPGApplicantEdit,
26    IPUTMEApplicantEdit)
27
28class NigeriaApplicant(Applicant):
29
30    grok.implements(INigeriaApplicant, INigeriaUGApplicantEdit,
31        INigeriaPGApplicantEdit, IPUTMEApplicantEdit)
32    grok.provides(INigeriaApplicant)
33
34    # Meanwhile perm_address has been removed but the attribute still exists in
35    # some applicant objects. So we'll leave it until all 2012 students
36    # have been created.
37    applicant_student_mapping = Applicant.applicant_student_mapping + [
38        ('lga', 'lga'),
39        ('nationality', 'nationality'),
40        ('perm_address', 'perm_address'),
41        ]
42
43    def _setStudyCourseAttributes(self, studycourse):
44        if self.applicant_id.startswith('pude'):
45            studycourse.entry_mode = u'de_ft'
46            studycourse.current_level = 200
47        else:
48            studycourse.entry_mode = self.course_admitted.study_mode
49            studycourse.current_level = self.course_admitted.start_level
50        studycourse.certificate = self.course_admitted
51        studycourse.entry_session = self.__parent__.year
52        studycourse.current_session = self.__parent__.year
53        return
54
55# Set all attributes of NigeriaApplicant required in INigeriaApplicant as field
56# properties. Doing this, we do not have to set initial attributes
57# ourselves and as a bonus we get free validation when an attribute is
58# set.
59NigeriaApplicant = attrs_to_fields(NigeriaApplicant)
60
61class NigeriaApplicantFactory(ApplicantFactory):
62    """A factory for customized applicants.
63    """
64
65    def __call__(self, *args, **kw):
66        return NigeriaApplicant()
67
68    def getInterfaces(self):
69        return implementedBy(NigeriaApplicant)
Note: See TracBrowser for help on using the repository browser.