[16639] | 1 | ## $Id: interfaces.py 17408 2023-05-10 07:37:16Z henrik $ |
---|
[15614] | 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 | |
---|
| 19 | from zope import schema |
---|
| 20 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
[17346] | 21 | from waeup.kofa.interfaces import (IKofaObject, academic_sessions_vocab) |
---|
[17363] | 22 | from waeup.kofa.schema import FormattedDate |
---|
[15614] | 23 | from kofacustom.nigeria.students.interfaces import ( |
---|
| 24 | INigeriaStudentBase, INigeriaUGStudentClearance, INigeriaPGStudentClearance, |
---|
| 25 | INigeriaStudentPersonal, INigeriaStudentStudyLevel, |
---|
| 26 | INigeriaStudentStudyCourse, INigeriaCourseTicket, |
---|
| 27 | INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo, |
---|
| 28 | ) |
---|
[16615] | 29 | from kofacustom.edocons.payments.interfaces import ICustomOnlinePayment |
---|
| 30 | from kofacustom.edocons.interfaces import MessageFactory as _ |
---|
[15614] | 31 | |
---|
| 32 | class ICustomStudentBase(INigeriaStudentBase): |
---|
| 33 | """Representation of student base data. |
---|
| 34 | |
---|
| 35 | """ |
---|
| 36 | |
---|
| 37 | class ICustomStudentPersonal(INigeriaStudentPersonal): |
---|
| 38 | """Student personal data. |
---|
| 39 | |
---|
| 40 | """ |
---|
| 41 | |
---|
| 42 | class ICustomUGStudentClearance(INigeriaUGStudentClearance): |
---|
| 43 | """Representation of ug student clearance data. |
---|
| 44 | |
---|
| 45 | """ |
---|
| 46 | |
---|
| 47 | class ICustomPGStudentClearance(INigeriaPGStudentClearance): |
---|
| 48 | """Representation of pg student clearance data. |
---|
| 49 | |
---|
| 50 | """ |
---|
| 51 | |
---|
| 52 | |
---|
| 53 | class ICustomStudent(ICustomStudentBase,ICustomUGStudentClearance, |
---|
| 54 | ICustomPGStudentClearance,ICustomStudentPersonal): |
---|
| 55 | """Representation of a student. |
---|
| 56 | |
---|
| 57 | """ |
---|
| 58 | |
---|
| 59 | class ICustomStudentStudyCourse(INigeriaStudentStudyCourse): |
---|
| 60 | """A container for student study levels. |
---|
| 61 | |
---|
| 62 | """ |
---|
| 63 | |
---|
| 64 | class ICustomStudentStudyLevel(INigeriaStudentStudyLevel): |
---|
| 65 | """A container for course tickets. |
---|
| 66 | |
---|
| 67 | """ |
---|
| 68 | |
---|
| 69 | class ICustomStudentOnlinePayment(ICustomOnlinePayment): |
---|
| 70 | """A student payment via payment gateways. |
---|
| 71 | |
---|
| 72 | This Interface does not inherit from IStudentOnlinePayment. |
---|
| 73 | Thus all fields from IStudentOnlinePayment have to be repeated here. |
---|
| 74 | """ |
---|
| 75 | |
---|
| 76 | p_current = schema.Bool( |
---|
| 77 | title = _(u'Current Session Payment'), |
---|
| 78 | default = True, |
---|
| 79 | required = False, |
---|
| 80 | ) |
---|
| 81 | |
---|
| 82 | p_level = schema.Choice( |
---|
| 83 | title = _(u'Payment Level'), |
---|
| 84 | source = StudyLevelSource(), |
---|
| 85 | required = False, |
---|
| 86 | ) |
---|
| 87 | |
---|
| 88 | ICustomStudentOnlinePayment['p_level'].order = ICustomStudentOnlinePayment[ |
---|
| 89 | 'p_session'].order |
---|
| 90 | |
---|
| 91 | class ICustomCourseTicket(INigeriaCourseTicket): |
---|
| 92 | """A course ticket. |
---|
| 93 | |
---|
| 94 | """ |
---|
| 95 | |
---|
[17406] | 96 | automatic = schema.Bool( |
---|
| 97 | title = _(u'Automatical Creation'), |
---|
| 98 | default = False, |
---|
| 99 | required = False, |
---|
| 100 | ) |
---|
| 101 | |
---|
| 102 | carry_over = schema.Bool( |
---|
| 103 | title = _(u'Carry-over Course'), |
---|
| 104 | default = False, |
---|
| 105 | required = False, |
---|
| 106 | ) |
---|
| 107 | |
---|
[17345] | 108 | carryover_score = schema.Int( |
---|
[17406] | 109 | title = _(u'Carry-over (RST) Score'), |
---|
[17345] | 110 | default = None, |
---|
| 111 | required = False, |
---|
| 112 | missing_value = None, |
---|
| 113 | max = 100, |
---|
| 114 | ) |
---|
| 115 | |
---|
[17406] | 116 | carryover_grade = schema.TextLine( |
---|
| 117 | title = _(u'Carry-over (RST) Grade'), |
---|
| 118 | required = False, |
---|
[17408] | 119 | default = None, |
---|
| 120 | missing_value = None, |
---|
[17406] | 121 | ) |
---|
| 122 | |
---|
| 123 | attempts = schema.Int( |
---|
| 124 | title = _(u'Number of Attempts'), |
---|
[17405] | 125 | default = None, |
---|
| 126 | required = False, |
---|
| 127 | missing_value = None, |
---|
| 128 | max = 5, |
---|
| 129 | ) |
---|
| 130 | |
---|
[17363] | 131 | in_progress = schema.Bool( |
---|
[17405] | 132 | title = _(u'Course in Progress'), |
---|
[17363] | 133 | default = False, |
---|
| 134 | required = False, |
---|
| 135 | ) |
---|
| 136 | |
---|
| 137 | resumption_date = FormattedDate( |
---|
| 138 | title = _(u'Resumption Date'), |
---|
| 139 | required = False, |
---|
| 140 | show_year = True, |
---|
| 141 | ) |
---|
| 142 | |
---|
[17406] | 143 | score = schema.Int( |
---|
| 144 | title = _(u'(Final) Score'), |
---|
| 145 | default = None, |
---|
| 146 | required = False, |
---|
| 147 | missing_value = None, |
---|
| 148 | ) |
---|
| 149 | |
---|
| 150 | #ICustomCourseTicket['carryover_score'].order = ICustomCourseTicket['carry_over'].order |
---|
[17363] | 151 | #ICustomCourseTicket['in_progress'].order = ICustomCourseTicket['grade'].order |
---|
| 152 | #ICustomCourseTicket['resumption_date'].order = ICustomCourseTicket['grade'].order |
---|
[17345] | 153 | |
---|
[17346] | 154 | class ICustomCourseTicketImport(ICustomCourseTicket): |
---|
| 155 | """An interface for importing course results and nothing more. |
---|
| 156 | """ |
---|
| 157 | |
---|
| 158 | score = schema.Int( |
---|
| 159 | title = _(u'Score'), |
---|
| 160 | required = False, |
---|
| 161 | readonly = False, |
---|
| 162 | ) |
---|
| 163 | |
---|
| 164 | level_session = schema.Choice( |
---|
| 165 | title = _(u'Level Session'), |
---|
| 166 | source = academic_sessions_vocab, |
---|
| 167 | required = False, |
---|
| 168 | readonly = False, |
---|
| 169 | ) |
---|
| 170 | |
---|
[15614] | 171 | class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo): |
---|
| 172 | """Representation of a student. Skip regular reg_number validation. |
---|
| 173 | |
---|
| 174 | """ |
---|
| 175 | |
---|
| 176 | class ICustomStudentUpdateByMatricNo(INigeriaStudentUpdateByMatricNo): |
---|
| 177 | """Representation of a student. Skip regular matric_number validation. |
---|
| 178 | |
---|
| 179 | """ |
---|