source: main/waeup.aaue/trunk/src/waeup/aaue/students/interfaces.py @ 10566

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

Remove gpa field.

  • Property svn:keywords set to Id
File size: 3.6 KB
Line 
1## $Id: interfaces.py 10280 2013-06-06 10:28:26Z 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 zc.sourcefactory.contextual import BasicContextualSourceFactory
21from zope.catalog.interfaces import ICatalog
22from zope.component import getUtility
23from waeup.kofa.interfaces import IKofaObject
24from kofacustom.nigeria.students.interfaces import (
25    INigeriaStudentBase, INigeriaUGStudentClearance, INigeriaPGStudentClearance,
26    INigeriaStudentPersonal, INigeriaStudentStudyLevel,
27    INigeriaStudentStudyCourse, INigeriaCourseTicket,
28    INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo,
29    )
30from waeup.aaue.payments.interfaces import ICustomOnlinePayment
31from waeup.aaue.interfaces import MessageFactory as _
32
33class ICustomStudentBase(INigeriaStudentBase):
34    """Representation of student base data.
35
36    """
37
38class ICustomStudentPersonal(INigeriaStudentPersonal):
39    """Student personal data.
40
41    """
42
43class ICustomUGStudentClearance(INigeriaUGStudentClearance):
44    """Representation of ug student clearance data.
45
46    """
47
48class ICustomPGStudentClearance(INigeriaPGStudentClearance):
49    """Representation of pg student clearance data.
50
51    """
52
53
54class ICustomStudent(ICustomStudentBase,ICustomUGStudentClearance,
55    ICustomPGStudentClearance,ICustomStudentPersonal):
56    """Representation of a student.
57
58    """
59
60class ICustomStudentStudyCourse(INigeriaStudentStudyCourse):
61    """A container for student study levels.
62
63    """
64
65class ICustomStudentStudyLevel(INigeriaStudentStudyLevel):
66    """A container for course tickets.
67
68    """
69
70    total_credits_s1 = schema.Int(
71        title = _(u'1st Semester Units'),
72        required = False,
73        readonly = True,
74        )
75
76    total_credits_s2 = schema.Int(
77        title = _(u'2nd Semester Units'),
78        required = False,
79        readonly = True,
80        )
81
82    total_credits = schema.Int(
83        title = _(u'Total Units'),
84        required = False,
85        readonly = True,
86        )
87
88class ICustomStudentOnlinePayment(ICustomOnlinePayment):
89    """A student payment via payment gateways.
90
91    This Interface does not inherit from IStudentOnlinePayment.
92    Thus all fields from IStudentOnlinePayment have to be repeated here.
93    """
94
95    p_current = schema.Bool(
96        title = _(u'Current Session Payment'),
97        default = True,
98        required = False,
99        )
100
101    p_level = schema.Int(
102        title = _(u'Payment Level'),
103        required = False,
104        )
105
106ICustomStudentOnlinePayment['p_level'].order = ICustomStudentOnlinePayment[
107    'p_session'].order
108
109class ICustomCourseTicket(INigeriaCourseTicket):
110    """A course ticket.
111
112    """
113
114class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo):
115    """Representation of a student. Skip regular reg_number validation.
116
117    """
118
119class ICustomStudentUpdateByMatricNo(INigeriaStudentUpdateByMatricNo):
120    """Representation of a student. Skip regular matric_number validation.
121
122    """
Note: See TracBrowser for help on using the repository browser.