source: main/waeup.uniben/trunk/src/waeup/uniben/students/student.py @ 16594

Last change on this file since 16594 was 16382, checked in by Henrik Bettermann, 4 years ago

Implement medical history questionnaire.

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1## $Id: student.py 16382 2021-01-22 22:49:43Z 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 for the various objects owned by students.
20"""
21import grok
22from zope.interface import implementedBy
23from waeup.kofa.interfaces import CLEARANCE, REQUESTED
24from waeup.kofa.utils.helpers import attrs_to_fields
25from waeup.kofa.students.student import StudentFactory
26from waeup.kofa.students.interfaces import IStudentNavigation
27from waeup.kofa.utils.helpers import get_current_principal
28from kofacustom.nigeria.students.student import NigeriaStudent
29from waeup.uniben.students.interfaces import (
30    ICustomStudent, ICustomStudentPersonalEdit, IMedicalHistory)
31
32
33class CustomStudent(NigeriaStudent):
34    """This is a student container for the various objects
35    owned by students.
36    """
37    grok.implements(
38        ICustomStudent, IStudentNavigation, ICustomStudentPersonalEdit,
39        IMedicalHistory)
40    grok.provides(ICustomStudent)
41
42    @property
43    def transcript_enabled(self):
44        return True
45        #user = get_current_principal()
46        #if user.id in ('admin', 'isouaba', 'med', 'zope.mgr'):
47        #    return True
48        #return False
49
50    @property
51    def is_jupeb(self):
52        if self.current_mode == 'found':
53            return True
54        return
55
56    @property
57    def clearance_locked(self):
58        return self.state not in (CLEARANCE, REQUESTED)
59
60
61# Set all attributes of Student required in IStudent as field
62# properties. Doing this, we do not have to set initial attributes
63# ourselves and as a bonus we get free validation when an attribute is
64# set.
65CustomStudent = attrs_to_fields(CustomStudent)
66
67class CustomStudentFactory(StudentFactory):
68    """A factory for students.
69    """
70
71    def __call__(self, *args, **kw):
72        return CustomStudent()
73
74    def getInterfaces(self):
75        return implementedBy(CustomStudent)
Note: See TracBrowser for help on using the repository browser.