source: main/waeup.kofa/trunk/src/waeup/kofa/students/studycourse.py @ 9090

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

Do not show current and previous verdict if postgrad student.

Fix is_postgrad property method.

  • Property svn:keywords set to Id
File size: 5.1 KB
Line 
1## $Id: studycourse.py 8972 2012-07-11 07:55:14Z 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"""
19Container which holds the data of the student study courses
20and contains the (student) study level objects.
21"""
22import grok
23from zope.component.interfaces import IFactory
24from zope.component import createObject
25from zope.interface import implementedBy
26from waeup.kofa.students.interfaces import (
27    IStudentStudyCourse, IStudentNavigation, IStudentStudyLevel)
28from waeup.kofa.students.studylevel import CourseTicket
29from waeup.kofa.students.workflow import CLEARED, RETURNING, PAID
30from waeup.kofa.utils.helpers import attrs_to_fields
31
32class StudentStudyCourse(grok.Container):
33    """This is a container for study levels.
34    """
35    grok.implements(IStudentStudyCourse, IStudentNavigation)
36    grok.provides(IStudentStudyCourse)
37
38    def __init__(self):
39        super(StudentStudyCourse, self).__init__()
40        return
41
42    @property
43    def student(self):
44        return self.__parent__
45
46    def writeLogMessage(self, view, message):
47        return self.__parent__.writeLogMessage(view, message)
48
49    @property
50    def next_session_allowed(self):
51        certificate = getattr(self, 'certificate', None)
52        if certificate == None:
53            return False
54        if self.student.state in (CLEARED, RETURNING):
55            return True
56        if self.student.state == PAID \
57            and self.student.is_postgrad:
58            return True
59        return False
60
61    @property
62    def is_postgrad(self):
63        if self.certificate is None:
64            return False
65        return self.certificate.study_mode.startswith('pg')
66
67    def addStudentStudyLevel(self, cert, studylevel):
68        """Add a study level object.
69        """
70        if not IStudentStudyLevel.providedBy(studylevel):
71            raise TypeError(
72                'StudentStudyCourses contain only IStudentStudyLevel instances')
73        self[str(studylevel.level)] = studylevel
74
75        #Create course tickets automatically
76        if cert is not None:
77            for key, val in cert.items():
78                if val.level != studylevel.level:
79                    continue
80                ticket = createObject(u'waeup.CourseTicket')
81                ticket.code = val.getCourseCode()
82                ticket.automatic = True
83                ticket.mandatory = val.mandatory
84                ticket.title = val.course.title
85                ticket.fcode = val.course.__parent__.__parent__.__parent__.code
86                ticket.dcode = val.course.__parent__.__parent__.code
87                ticket.credits = val.course.credits
88                ticket.passmark = val.course.passmark
89                ticket.semester = val.course.semester
90                ticket.carry_over = False
91                self[str(studylevel.level)][ticket.code] = ticket
92        # Collect carry-over courses in base levels (not in repeating levels)
93        try:
94            co_enabled = grok.getSite()['configuration'].carry_over
95        except TypeError:
96            # In tests we might not have a site object
97            co_enabled = True
98        if not co_enabled or studylevel.level % 100 != 0:
99            return
100        levels = sorted(self.keys())
101        index = levels.index(str(studylevel.level))
102        if index <= 0:
103            return
104        previous_level = self[levels[index-1]]
105        for key, val in previous_level.items():
106            if val.score >= val.passmark:
107                continue
108            if key in self[str(studylevel.level)]:
109                # Carry-over ticket exists
110                continue
111            co_ticket = createObject(u'waeup.CourseTicket')
112            for name in ['code', 'title', 'credits', 'passmark',
113                         'semester', 'mandatory', 'fcode', 'dcode']:
114                setattr(co_ticket, name, getattr(val, name))
115            co_ticket.automatic = True
116            co_ticket.carry_over = True
117            self[str(studylevel.level)][co_ticket.code] = co_ticket
118        return
119
120StudentStudyCourse = attrs_to_fields(StudentStudyCourse)
121
122class StudentStudyCourseFactory(grok.GlobalUtility):
123    """A factory for student study courses.
124    """
125    grok.implements(IFactory)
126    grok.name(u'waeup.StudentStudyCourse')
127    title = u"Create a new student study course.",
128    description = u"This factory instantiates new student study course instances."
129
130    def __call__(self, *args, **kw):
131        return StudentStudyCourse()
132
133    def getInterfaces(self):
134        return implementedBy(StudentStudyCourse)
Note: See TracBrowser for help on using the repository browser.