1 | ## $Id: interfaces.py 17395 2023-04-27 11:37:37Z 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 | |
---|
19 | from zope import schema |
---|
20 | from waeup.kofa.interfaces import ( |
---|
21 | validate_email, IKofaObject, |
---|
22 | academic_sessions_vocab) |
---|
23 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
24 | from kofacustom.nigeria.interfaces import GradingSystemSource |
---|
25 | from kofacustom.nigeria.students.interfaces import ( |
---|
26 | INigeriaStudentBase, INigeriaUGStudentClearance, INigeriaPGStudentClearance, |
---|
27 | INigeriaStudentPersonal, INigeriaStudentPersonalEdit, |
---|
28 | INigeriaStudentStudyLevel, |
---|
29 | INigeriaStudentStudyCourse, INigeriaCourseTicket, |
---|
30 | INigeriaStudentUpdateByRegNo, INigeriaStudentUpdateByMatricNo, |
---|
31 | ) |
---|
32 | from waeup.uniben.payments.interfaces import ICustomOnlinePayment |
---|
33 | from waeup.uniben.interfaces import MessageFactory as _ |
---|
34 | |
---|
35 | |
---|
36 | class ICustomStudentBase(INigeriaStudentBase): |
---|
37 | """Representation of student base data. |
---|
38 | """ |
---|
39 | |
---|
40 | library = schema.Bool( |
---|
41 | title = _(u'Library Id Card'), |
---|
42 | default = False, |
---|
43 | required = False, |
---|
44 | ) |
---|
45 | |
---|
46 | email2 = schema.ASCIILine( |
---|
47 | title = _(u'Institution Email'), |
---|
48 | required = False, |
---|
49 | constraint=validate_email, |
---|
50 | ) |
---|
51 | |
---|
52 | ICustomStudentBase['email2'].order = ICustomStudentBase[ |
---|
53 | 'phone'].order |
---|
54 | ICustomStudentBase['phone'].order = ICustomStudentBase[ |
---|
55 | 'email'].order |
---|
56 | |
---|
57 | class IMedicalHistory(IKofaObject): |
---|
58 | """Students Medical History Questionnaire. |
---|
59 | """ |
---|
60 | |
---|
61 | medical_updated = schema.Datetime( |
---|
62 | title = _(u'Last updated'), |
---|
63 | required = False, |
---|
64 | readonly = False, |
---|
65 | ) |
---|
66 | |
---|
67 | # History of Symptoms |
---|
68 | |
---|
69 | fever = schema.Bool( |
---|
70 | title = _(u'Fever'), |
---|
71 | default = False, |
---|
72 | required = True, |
---|
73 | ) |
---|
74 | |
---|
75 | headaches = schema.Bool( |
---|
76 | title = _(u'Headaches'), |
---|
77 | default = False, |
---|
78 | required = True, |
---|
79 | ) |
---|
80 | |
---|
81 | catarrh = schema.Bool( |
---|
82 | title = _(u'Catarrh'), |
---|
83 | default = False, |
---|
84 | required = True, |
---|
85 | ) |
---|
86 | |
---|
87 | cough = schema.Bool( |
---|
88 | title = _(u'Cough'), |
---|
89 | default = False, |
---|
90 | required = True, |
---|
91 | ) |
---|
92 | |
---|
93 | sore_throat = schema.Bool( |
---|
94 | title = _(u'Sore throat'), |
---|
95 | default = False, |
---|
96 | required = True, |
---|
97 | ) |
---|
98 | |
---|
99 | breathing = schema.Bool( |
---|
100 | title = _(u'Difficulty with breathing'), |
---|
101 | default = False, |
---|
102 | required = True, |
---|
103 | ) |
---|
104 | |
---|
105 | sneezing = schema.Bool( |
---|
106 | title = _(u'Sneezing'), |
---|
107 | default = False, |
---|
108 | required = True, |
---|
109 | ) |
---|
110 | |
---|
111 | weakness = schema.Bool( |
---|
112 | title = _(u'Weakness/tiredness'), |
---|
113 | default = False, |
---|
114 | required = True, |
---|
115 | ) |
---|
116 | |
---|
117 | body_pains = schema.Bool( |
---|
118 | title = _(u'Body pains'), |
---|
119 | default = False, |
---|
120 | required = True, |
---|
121 | ) |
---|
122 | |
---|
123 | smell = schema.Bool( |
---|
124 | title = _(u'Loss of smell (inability to smell)'), |
---|
125 | default = False, |
---|
126 | required = True, |
---|
127 | ) |
---|
128 | |
---|
129 | taste = schema.Bool( |
---|
130 | title = _(u'Loss of taste'), |
---|
131 | default = False, |
---|
132 | required = True, |
---|
133 | ) |
---|
134 | |
---|
135 | # Medical History |
---|
136 | |
---|
137 | asthma = schema.Bool( |
---|
138 | title = _(u'Asthma'), |
---|
139 | default = False, |
---|
140 | required = True, |
---|
141 | ) |
---|
142 | |
---|
143 | hypertension = schema.Bool( |
---|
144 | title = _(u'Hypertension'), |
---|
145 | default = False, |
---|
146 | required = True, |
---|
147 | ) |
---|
148 | |
---|
149 | diabetes = schema.Bool( |
---|
150 | title = _(u'Diabetes'), |
---|
151 | default = False, |
---|
152 | required = True, |
---|
153 | ) |
---|
154 | |
---|
155 | obesity = schema.Bool( |
---|
156 | title = _(u'Obesity'), |
---|
157 | default = False, |
---|
158 | required = True, |
---|
159 | ) |
---|
160 | |
---|
161 | others = schema.TextLine( |
---|
162 | title = _(u'Others'), |
---|
163 | required = False, |
---|
164 | ) |
---|
165 | |
---|
166 | medicines = schema.TextLine( |
---|
167 | title = _(u'Are you on a regular medication? If yes, list the medicines'), |
---|
168 | required = False, |
---|
169 | ) |
---|
170 | |
---|
171 | # Travel History |
---|
172 | |
---|
173 | lagos_abuja = schema.Bool( |
---|
174 | title = _(u'Have you travelled to Lagos or Abuja in the last two weeks?'), |
---|
175 | default = False, |
---|
176 | required = True, |
---|
177 | ) |
---|
178 | |
---|
179 | outside = schema.Bool( |
---|
180 | title = _(u'Have you travelled outside the country in the last 4 weeks?'), |
---|
181 | default = False, |
---|
182 | required = True, |
---|
183 | ) |
---|
184 | |
---|
185 | # History of contact/infection |
---|
186 | |
---|
187 | company_suspected = schema.Bool( |
---|
188 | title = _(u'Were you in the company of a suspected case of COVID 19 in the last two weeks?'), |
---|
189 | default = False, |
---|
190 | required = True, |
---|
191 | ) |
---|
192 | |
---|
193 | company_confirmed = schema.Bool( |
---|
194 | title = _(u'Were you in the company of a confirmed case of COVID 19 in the last two weeks?'), |
---|
195 | default = False, |
---|
196 | required = True, |
---|
197 | ) |
---|
198 | |
---|
199 | positive = schema.Bool( |
---|
200 | title = _(u'Have you had a positive COVID 19 test done?'), |
---|
201 | default = False, |
---|
202 | required = True, |
---|
203 | ) |
---|
204 | |
---|
205 | negative = schema.Bool( |
---|
206 | title = _(u'Have you had a negative COVID 19 test done?'), |
---|
207 | default = False, |
---|
208 | required = True, |
---|
209 | ) |
---|
210 | |
---|
211 | vaccination = schema.Bool( |
---|
212 | title = _(u'Have you had COVID 19 vaccination?'), |
---|
213 | default = False, |
---|
214 | required = True, |
---|
215 | ) |
---|
216 | |
---|
217 | class ITiship(IKofaObject): |
---|
218 | """Student tiship data. |
---|
219 | """ |
---|
220 | |
---|
221 | genotype = schema.TextLine( |
---|
222 | title = _(u'Genotype'), |
---|
223 | required = False, |
---|
224 | ) |
---|
225 | |
---|
226 | bloodgroup = schema.TextLine( |
---|
227 | title = _(u'Blood Group'), |
---|
228 | required = False, |
---|
229 | ) |
---|
230 | |
---|
231 | class ICustomStudentPersonal(INigeriaStudentPersonal): |
---|
232 | """Student personal data. |
---|
233 | """ |
---|
234 | |
---|
235 | parent_email = schema.ASCIILine( |
---|
236 | title = _(u'Parent Email'), |
---|
237 | required = False, |
---|
238 | constraint=validate_email, |
---|
239 | ) |
---|
240 | |
---|
241 | nysc = schema.Bool( |
---|
242 | title = _(u'Applying for NYSC'), |
---|
243 | default = False, |
---|
244 | required = True, |
---|
245 | ) |
---|
246 | |
---|
247 | class ICustomStudentPersonalEdit(INigeriaStudentPersonalEdit): |
---|
248 | """Interface for editing personal data by students. |
---|
249 | """ |
---|
250 | |
---|
251 | parent_email = schema.ASCIILine( |
---|
252 | title = _(u'Parent Email'), |
---|
253 | required = False, |
---|
254 | constraint=validate_email, |
---|
255 | ) |
---|
256 | |
---|
257 | nysc = schema.Bool( |
---|
258 | title = _(u'Do you want to apply for NYSC?'), |
---|
259 | default = False, |
---|
260 | description = u'Ensure that all your school charges are paid up to date to your graduating session before making this nysc application.', |
---|
261 | required = True, |
---|
262 | ) |
---|
263 | |
---|
264 | class ICustomUGStudentClearance(INigeriaUGStudentClearance): |
---|
265 | """Representation of ug student clearance data. |
---|
266 | """ |
---|
267 | |
---|
268 | class ICustomPGStudentClearance(INigeriaPGStudentClearance): |
---|
269 | """Representation of pg student clearance data. |
---|
270 | """ |
---|
271 | |
---|
272 | class ICustomStudent(ICustomStudentBase, ICustomUGStudentClearance, |
---|
273 | ICustomPGStudentClearance, ICustomStudentPersonal, IMedicalHistory, |
---|
274 | ITiship): |
---|
275 | """Representation of a student. |
---|
276 | """ |
---|
277 | |
---|
278 | class ICustomStudentStudyCourse(INigeriaStudentStudyCourse): |
---|
279 | """A container for student study levels. |
---|
280 | """ |
---|
281 | |
---|
282 | class ICustomStudentStudyLevel(INigeriaStudentStudyLevel): |
---|
283 | """A container for course tickets. |
---|
284 | """ |
---|
285 | |
---|
286 | class ICustomStudentOnlinePayment(ICustomOnlinePayment): |
---|
287 | """A student payment via payment gateways. |
---|
288 | |
---|
289 | This Interface does not inherit from IStudentOnlinePayment. |
---|
290 | Thus all fields from IStudentOnlinePayment have to be repeated here. |
---|
291 | """ |
---|
292 | |
---|
293 | p_current = schema.Bool( |
---|
294 | title = _(u'Current Session Payment'), |
---|
295 | default = True, |
---|
296 | required = False, |
---|
297 | ) |
---|
298 | |
---|
299 | p_level = schema.Choice( |
---|
300 | title = _(u'Payment Level'), |
---|
301 | source = StudyLevelSource(), |
---|
302 | required = False, |
---|
303 | ) |
---|
304 | |
---|
305 | staff_rebate = schema.Bool( |
---|
306 | title = _(u'Staff Rebate Payment'), |
---|
307 | default = False, |
---|
308 | required = False, |
---|
309 | ) |
---|
310 | |
---|
311 | rebate_amount = schema.Float( |
---|
312 | title = _(u'Rebate'), |
---|
313 | default = 0.0, |
---|
314 | required = False, |
---|
315 | readonly = False, |
---|
316 | ) |
---|
317 | |
---|
318 | ICustomStudentOnlinePayment['p_level'].order = ICustomStudentOnlinePayment[ |
---|
319 | 'p_session'].order |
---|
320 | |
---|
321 | class ICustomCourseTicket(INigeriaCourseTicket): |
---|
322 | """A course ticket. |
---|
323 | """ |
---|
324 | |
---|
325 | grading_sys = schema.Choice( |
---|
326 | title = _(u'Grading System'), |
---|
327 | source = GradingSystemSource(), |
---|
328 | required = True, |
---|
329 | default = 'A', |
---|
330 | ) |
---|
331 | |
---|
332 | class ICustomCourseTicketImport(ICustomCourseTicket): |
---|
333 | """An interface for importing course results and nothing more. |
---|
334 | """ |
---|
335 | |
---|
336 | score = schema.Int( |
---|
337 | title = _(u'Score'), |
---|
338 | required = False, |
---|
339 | readonly = False, |
---|
340 | ) |
---|
341 | |
---|
342 | level_session = schema.Choice( |
---|
343 | title = _(u'Level Session'), |
---|
344 | source = academic_sessions_vocab, |
---|
345 | required = False, |
---|
346 | readonly = False, |
---|
347 | ) |
---|
348 | |
---|
349 | grading_sys = schema.Choice( |
---|
350 | title = _(u'Grading System'), |
---|
351 | source = GradingSystemSource(), |
---|
352 | required = False, |
---|
353 | default = 'A', |
---|
354 | ) |
---|
355 | |
---|
356 | class ICustomStudentUpdateByRegNo(INigeriaStudentUpdateByRegNo): |
---|
357 | """Representation of a student. Skip regular reg_number validation. |
---|
358 | """ |
---|
359 | |
---|
360 | class ICustomStudentUpdateByMatricNo(INigeriaStudentUpdateByMatricNo): |
---|
361 | """Representation of a student. Skip regular matric_number validation. |
---|
362 | """ |
---|