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

Last change on this file since 9163 was 9072, checked in by Henrik Bettermann, 12 years ago

Remove perm_address field.

  • Property svn:keywords set to Id
File size: 2.1 KB
RevLine 
[8926]1## $Id: applicant.py 9072 2012-07-27 05:20:39Z 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
[9072]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.
[8926]37    create_names = Applicant.create_names + [
[9072]38        'lga', 'nationality', 'perm_address'] 
[8926]39
[9071]40# Set all attributes of NigeriaApplicant required in INigeriaApplicant as field
[8926]41# properties. Doing this, we do not have to set initial attributes
42# ourselves and as a bonus we get free validation when an attribute is
43# set.
44NigeriaApplicant = attrs_to_fields(NigeriaApplicant)
45
46class NigeriaApplicantFactory(ApplicantFactory):
47    """A factory for customized applicants.
48    """
49
50    def __call__(self, *args, **kw):
51        return NigeriaApplicant()
52
53    def getInterfaces(self):
54        return implementedBy(NigeriaApplicant)
Note: See TracBrowser for help on using the repository browser.