source: main/waeup.uniben/trunk/src/waeup/uniben/students/interfaces.py @ 16326

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

Add institution email.

  • Property svn:keywords set to Id
File size: 4.3 KB
Line 
1## $Id: interfaces.py 16088 2020-05-11 07:50:40Z 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
19from zope import schema
20from waeup.kofa.interfaces import validate_email
21from waeup.kofa.students.vocabularies import StudyLevelSource
22from kofacustom.nigeria.students.interfaces import (
23    INigeriaStudentBase, INigeriaUGStudentClearance, INigeriaPGStudentClearance,
24    INigeriaStudentPersonal, INigeriaStudentPersonalEdit,
25    INigeriaStudentStudyLevel,
26    INigeriaStudentStudyCourse, INigeriaCourseTicket,
27    INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo,
28    )
29from waeup.uniben.payments.interfaces import ICustomOnlinePayment
30from waeup.uniben.interfaces import MessageFactory as _
31
32class ICustomStudentBase(INigeriaStudentBase):
33    """Representation of student base data.
34    """
35
36    library = schema.Bool(
37        title = _(u'Library Id Card'),
38        default = False,
39        required = False,
40        )
41
42    email2 = schema.ASCIILine(
43        title = _(u'Institution Email'),
44        required = False,
45        constraint=validate_email,
46        )
47
48ICustomStudentBase['email2'].order = ICustomStudentBase[
49    'phone'].order
50ICustomStudentBase['phone'].order = ICustomStudentBase[
51    'email'].order
52
53class ICustomStudentPersonal(INigeriaStudentPersonal):
54    """Student personal data.
55    """
56
57    parent_email = schema.ASCIILine(
58        title = _(u'Parent Email'),
59        required = False,
60        constraint=validate_email,
61        )
62
63class ICustomStudentPersonalEdit(INigeriaStudentPersonalEdit):
64    """Interface for editing personal data by students.
65    """
66
67    parent_email = schema.ASCIILine(
68        title = _(u'Parent Email'),
69        required = False,
70        constraint=validate_email,
71        )
72
73class ICustomUGStudentClearance(INigeriaUGStudentClearance):
74    """Representation of ug student clearance data.
75    """
76
77class ICustomPGStudentClearance(INigeriaPGStudentClearance):
78    """Representation of pg student clearance data.
79    """
80
81class ICustomStudent(ICustomStudentBase, ICustomUGStudentClearance,
82    ICustomPGStudentClearance, ICustomStudentPersonal):
83    """Representation of a student.
84    """
85
86class ICustomStudentStudyCourse(INigeriaStudentStudyCourse):
87    """A container for student study levels.
88    """
89
90class ICustomStudentStudyLevel(INigeriaStudentStudyLevel):
91    """A container for course tickets.
92    """
93
94class ICustomStudentOnlinePayment(ICustomOnlinePayment):
95    """A student payment via payment gateways.
96
97    This Interface does not inherit from IStudentOnlinePayment.
98    Thus all fields from IStudentOnlinePayment have to be repeated here.
99    """
100
101    p_current = schema.Bool(
102        title = _(u'Current Session Payment'),
103        default = True,
104        required = False,
105        )
106
107    p_level = schema.Choice(
108        title = _(u'Payment Level'),
109        source = StudyLevelSource(),
110        required = False,
111        )
112
113    staff_rebate = schema.Bool(
114        title = _(u'Staff Rebate Payment'),
115        default = False,
116        required = False,
117        )
118
119    rebate_amount = schema.Float(
120        title = _(u'Rebate'),
121        default = 0.0,
122        required = False,
123        readonly = False,
124        )
125
126ICustomStudentOnlinePayment['p_level'].order = ICustomStudentOnlinePayment[
127    'p_session'].order
128
129class ICustomCourseTicket(INigeriaCourseTicket):
130    """A course ticket.
131    """
132
133class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo):
134    """Representation of a student. Skip regular reg_number validation.
135    """
136
137class ICustomStudentUpdateByMatricNo(INigeriaStudentUpdateByMatricNo):
138    """Representation of a student. Skip regular matric_number validation.
139    """
Note: See TracBrowser for help on using the repository browser.