1 | ## $Id: studycourse.py 10156 2013-05-07 17:31:10Z 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 | """ |
---|
19 | Container which holds the data of the student study courses |
---|
20 | and contains the (student) study level objects. |
---|
21 | """ |
---|
22 | import grok |
---|
23 | from zope.interface import implementedBy |
---|
24 | from waeup.kofa.students.studycourse import ( |
---|
25 | StudentStudyCourse, StudentStudyCourseFactory) |
---|
26 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
27 | from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID |
---|
28 | from kofacustom.nigeria.students.interfaces import ( |
---|
29 | INigeriaStudentStudyCourse, IStudentNavigation) |
---|
30 | |
---|
31 | class NigeriaStudentStudyCourse(StudentStudyCourse): |
---|
32 | """This is a container for study levels. |
---|
33 | """ |
---|
34 | |
---|
35 | grok.implements(INigeriaStudentStudyCourse, IStudentNavigation) |
---|
36 | grok.provides(INigeriaStudentStudyCourse) |
---|
37 | |
---|
38 | @property |
---|
39 | def next_session_allowed(self): |
---|
40 | state = self.student.state |
---|
41 | certificate = getattr(self, 'certificate', None) |
---|
42 | if certificate == None: |
---|
43 | return False |
---|
44 | if state == CLEARED: |
---|
45 | return True |
---|
46 | cond0 = state == RETURNING |
---|
47 | cond1 = self.current_verdict in ( |
---|
48 | 'A','B','C','F','J','L','M','N','O','X','Z') |
---|
49 | cond2 = self.current_level in (0, 100) |
---|
50 | cond3 = certificate.study_mode.startswith('de') and \ |
---|
51 | self.current_level == 200 |
---|
52 | cond4 = certificate.study_mode.startswith('ph') and \ |
---|
53 | self.current_level == 300 |
---|
54 | if cond0 and (cond1 or cond2 or cond3 or cond4): |
---|
55 | return True |
---|
56 | cond5 = self.is_postgrad |
---|
57 | cond6 = state == PAID |
---|
58 | cond7 = self.is_special_postgrad |
---|
59 | if cond5 and cond6 and not cond7: |
---|
60 | return True |
---|
61 | return False |
---|
62 | |
---|
63 | NigeriaStudentStudyCourse = attrs_to_fields(NigeriaStudentStudyCourse) |
---|
64 | |
---|
65 | class NigeriaStudentStudyCourseFactory(StudentStudyCourseFactory): |
---|
66 | """A factory for student study courses. |
---|
67 | """ |
---|
68 | |
---|
69 | def __call__(self, *args, **kw): |
---|
70 | return NigeriaStudentStudyCourse() |
---|
71 | |
---|
72 | def getInterfaces(self): |
---|
73 | return implementedBy(NigeriaStudentStudyCourse) |
---|