source: main/kofacustom.nigeria/trunk/src/kofacustom/nigeria/students/studycourse.py @ 17911

Last change on this file since 17911 was 17911, checked in by Henrik Bettermann, 2 weeks ago

Next session also for verdict R.

  • Property svn:keywords set to Id
File size: 2.7 KB
Line 
1## $Id: studycourse.py 17911 2024-09-04 06:52:44Z 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 kofacustom.nigeria.students.interfaces import (
29    INigeriaStudentStudyCourse, IStudentNavigation)
30
31class 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','R','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
63NigeriaStudentStudyCourse = attrs_to_fields(NigeriaStudentStudyCourse)
64
65class 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)
Note: See TracBrowser for help on using the repository browser.