source: main/waeup.aaue/trunk/src/waeup/aaue/students/studycourse.py @ 8746

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

Merged with waeup.uniben 8740:HEAD.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: studycourse.py 8746 2012-06-18 06:59:17Z 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"""
19Container which holds the data of the student study courses
20and contains the (student) study level objects.
21"""
22import grok
23from zope.interface import implementedBy
24from waeup.kofa.students.studycourse import (
25    StudentStudyCourse, StudentStudyCourseFactory)
26from waeup.kofa.utils.helpers import attrs_to_fields
27from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID
28from waeup.aaue.students.interfaces import (
29    ICustomStudentStudyCourse, IStudentNavigation)
30
31class CustomStudentStudyCourse(StudentStudyCourse):
32    """This is a container for study levels.
33    """
34
35    grok.implements(ICustomStudentStudyCourse, IStudentNavigation)
36    grok.provides(ICustomStudentStudyCourse)
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.previous_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        if  cond5 and cond6:
59            return True
60        return False
61
62CustomStudentStudyCourse = attrs_to_fields(CustomStudentStudyCourse)
63
64class CustomStudentStudyCourseFactory(StudentStudyCourseFactory):
65    """A factory for student study courses.
66    """
67
68    def __call__(self, *args, **kw):
69        return CustomStudentStudyCourse()
70
71    def getInterfaces(self):
72        return implementedBy(CustomStudentStudyCourse)
Note: See TracBrowser for help on using the repository browser.