[8926] | 1 | ## $Id: applicant.py 9482 2012-10-31 08:25:49Z 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 | |
---|
| 19 | import grok |
---|
| 20 | from zope.interface import implementedBy |
---|
| 21 | from waeup.kofa.applicants.applicant import Applicant, ApplicantFactory |
---|
| 22 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
| 23 | from kofacustom.nigeria.applicants.interfaces import( |
---|
| 24 | INigeriaApplicant, |
---|
| 25 | INigeriaUGApplicantEdit, INigeriaPGApplicantEdit, |
---|
| 26 | IPUTMEApplicantEdit) |
---|
| 27 | |
---|
| 28 | class 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 | |
---|
[9482] | 40 | def _setStudyCourseAttributes(self, studycourse): |
---|
| 41 | if self.applicant_id.startswith('pude'): |
---|
| 42 | studycourse.entry_mode = u'de_ft' |
---|
| 43 | studycourse.current_level = 200 |
---|
| 44 | else: |
---|
| 45 | studycourse.entry_mode = self.course_admitted.study_mode |
---|
| 46 | studycourse.current_level = self.course_admitted.start_level |
---|
| 47 | studycourse.certificate = self.course_admitted |
---|
| 48 | studycourse.entry_session = self.__parent__.year |
---|
| 49 | studycourse.current_session = self.__parent__.year |
---|
| 50 | return |
---|
| 51 | |
---|
[9071] | 52 | # Set all attributes of NigeriaApplicant required in INigeriaApplicant as field |
---|
[8926] | 53 | # properties. Doing this, we do not have to set initial attributes |
---|
| 54 | # ourselves and as a bonus we get free validation when an attribute is |
---|
| 55 | # set. |
---|
| 56 | NigeriaApplicant = attrs_to_fields(NigeriaApplicant) |
---|
| 57 | |
---|
| 58 | class NigeriaApplicantFactory(ApplicantFactory): |
---|
| 59 | """A factory for customized applicants. |
---|
| 60 | """ |
---|
| 61 | |
---|
| 62 | def __call__(self, *args, **kw): |
---|
| 63 | return NigeriaApplicant() |
---|
| 64 | |
---|
| 65 | def getInterfaces(self): |
---|
| 66 | return implementedBy(NigeriaApplicant) |
---|