source: main/kofacustom.iuokada/trunk/src/kofacustom/iuokada/students/student.py @ 16409

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

Jite: Acceptance fee of 200k is a part of schoolfees.

Adjust flash message.

  • Property svn:keywords set to Id
File size: 4.1 KB
Line 
1## $Id: student.py 16409 2021-03-06 21:29:49Z 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.utils.helpers import attrs_to_fields
24from waeup.kofa.students.student import StudentFactory
25from waeup.kofa.students.interfaces import IStudentNavigation
26from waeup.kofa.utils.helpers import get_current_principal
27from kofacustom.nigeria.students.student import NigeriaStudent
28from kofacustom.iuokada.students.interfaces import (
29    ICustomStudent, ICustomStudentPersonalEdit)
30
31
32class CustomStudent(NigeriaStudent):
33    """This is a student container for the various objects
34    owned by students.
35    """
36    grok.implements(ICustomStudent, IStudentNavigation,
37        ICustomStudentPersonalEdit)
38    grok.provides(ICustomStudent)
39
40    @property
41    def transcript_enabled(self):
42        user = get_current_principal()
43        if user.id in ('admin', 'isouaba', 'niyi', 'delejason'):
44            return True
45        return False
46
47    @property
48    def is_jupeb(self):
49        if self.faccode.startswith('JUPEB'):
50            return True
51        return False
52
53    def minimumStudentPayments_not_used(self, minamount):
54        """Need to access edit_personal. Only in iuokada package.
55        """
56        #if not self.is_fresh:
57        #    return False
58        if self.sponsor in ['bauchi', 'federalgov', 'kano']:
59            return True
60        total_amount = 0.0
61        for ticket in self['payments'].values():
62            if ticket.p_state == 'paid' \
63                and ticket.p_session >= self.current_session:
64                total_amount += ticket.amount_auth
65        if total_amount >= minamount:
66            return True
67        return False
68
69    def minimumStudentPayments(self):
70        """Need to access edit_personal. Only in iuokada package.
71        """
72        if self.sponsor in ['bauchi', 'federalgov', 'kano']:
73            return True
74        try:
75            certificate = self['studycourse'].certificate
76        except (AttributeError, TypeError):
77            return _('Study course data are incomplete.'), None
78        total_amount = 0.0
79        for ticket in self['payments'].values():
80            if ticket.p_state == 'paid' \
81                and ticket.p_session >= self.current_session \
82                and ticket.p_category in ('schoolfee', 'schoolfee40',
83                                          'secondinstal', 'clearance',
84                                          'jupeb_acc'):
85                total_amount += ticket.amount_auth
86        if self.is_fresh:
87            minamount = 0.4 * getattr(certificate, 'school_fee_1', 0.0)
88        else:
89            minamount = 0.4 * getattr(certificate, 'school_fee_2', 0.0)
90        if total_amount >= minamount:
91            return True
92        return False
93
94    @property
95    def personal_data_expired(self):
96        # This reqirement is not compatible with minimumFreshStudentPayments.
97        return False
98
99
100# Set all attributes of Student required in IStudent as field
101# properties. Doing this, we do not have to set initial attributes
102# ourselves and as a bonus we get free validation when an attribute is
103# set.
104CustomStudent = attrs_to_fields(CustomStudent)
105
106class CustomStudentFactory(StudentFactory):
107    """A factory for students.
108    """
109
110    def __call__(self, *args, **kw):
111        return CustomStudent()
112
113    def getInterfaces(self):
114        return implementedBy(CustomStudent)
Note: See TracBrowser for help on using the repository browser.