source: main/waeup.aaue/trunk/src/waeup/aaue/students/studylevel.py @ 12504

Last change on this file since 12504 was 10480, checked in by Henrik Bettermann, 11 years ago

Reinvent unrectified sessional gpa (adjustments to base package).

  • Property svn:keywords set to Id
File size: 3.3 KB
Line 
1## $Id: studylevel.py 10480 2013-08-12 09:08:35Z 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 a student study level
20and contains the course tickets.
21"""
22import grok
23from zope.component.interfaces import IFactory
24from zope.component import createObject
25from zope.interface import implementedBy
26from waeup.kofa.utils.helpers import attrs_to_fields
27from waeup.kofa.students.studylevel import (
28    StudentStudyLevel, CourseTicket,
29    CourseTicketFactory, StudentStudyLevelFactory)
30from waeup.kofa.students.interfaces import IStudentNavigation
31from waeup.aaue.students.interfaces import (
32    ICustomStudentStudyLevel, ICustomCourseTicket)
33
34
35class CustomStudentStudyLevel(StudentStudyLevel):
36    """This is a container for course tickets.
37    """
38    grok.implements(ICustomStudentStudyLevel, IStudentNavigation)
39    grok.provides(ICustomStudentStudyLevel)
40
41    @property
42    def total_credits_s1(self):
43        total = 0
44        for ticket in self.values():
45            if ticket.semester == 1:
46                total += ticket.credits
47        return total
48
49    @property
50    def total_credits_s2(self):
51        total = 0
52        for ticket in self.values():
53            if ticket.semester == 2:
54                total += ticket.credits
55        return total
56
57    @property
58    def gpa_params_rectified(self):
59        return self.gpa_params
60
61CustomStudentStudyLevel = attrs_to_fields(
62    CustomStudentStudyLevel, omit=[
63    'total_credits', 'total_credits_s1', 'total_credits_s2', 'gpa'])
64
65class CustomStudentStudyLevelFactory(StudentStudyLevelFactory):
66    """A factory for student study levels.
67    """
68
69    def __call__(self, *args, **kw):
70        return CustomStudentStudyLevel()
71
72    def getInterfaces(self):
73        return implementedBy(CustomStudentStudyLevel)
74
75class CustomCourseTicket(CourseTicket):
76    """This is a course ticket which allows the
77    student to attend the course. Lecturers will enter scores and more at
78    the end of the term.
79
80    A course ticket contains a copy of the original course and
81    course referrer data. If the courses and/or their referrers are removed, the
82    corresponding tickets remain unchanged. So we do not need any event
83    triggered actions on course tickets.
84    """
85    grok.implements(ICustomCourseTicket, IStudentNavigation)
86    grok.provides(ICustomCourseTicket)
87
88CustomCourseTicket = attrs_to_fields(CustomCourseTicket)
89
90class CustomCourseTicketFactory(CourseTicketFactory):
91    """A factory for student study levels.
92    """
93
94    def __call__(self, *args, **kw):
95        return CustomCourseTicket()
96
97    def getInterfaces(self):
98        return implementedBy(CustomCourseTicket)
Note: See TracBrowser for help on using the repository browser.