[7191] | 1 | ## $Id: interfaces.py 15333 2019-02-17 10:51:02Z henrik $ |
---|
[6621] | 2 | ## |
---|
[7191] | 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 | ## |
---|
[8409] | 18 | #from datetime import datetime |
---|
[7620] | 19 | from zope.component import getUtility |
---|
[15203] | 20 | from zope.interface import Attribute, Interface, invariant, Invalid |
---|
[6621] | 21 | from zope import schema |
---|
[7620] | 22 | from zc.sourcefactory.contextual import BasicContextualSourceFactory |
---|
[9217] | 23 | from waeup.kofa.browser.interfaces import IStudentNavigationBase |
---|
[7811] | 24 | from waeup.kofa.interfaces import ( |
---|
[11450] | 25 | IKofaObject, academic_sessions_vocab, validate_email, ICSVExporter, |
---|
[13125] | 26 | ContextualDictSourceFactoryBase, IKofaUtils) |
---|
[7811] | 27 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8176] | 28 | from waeup.kofa.schema import TextLineChoice, FormattedDate, PhoneNumber |
---|
[7811] | 29 | from waeup.kofa.students.vocabularies import ( |
---|
[7915] | 30 | StudyLevelSource, contextual_reg_num_source, contextual_mat_num_source, |
---|
[9420] | 31 | GenderSource, nats_vocab |
---|
[7915] | 32 | ) |
---|
[8160] | 33 | from waeup.kofa.payments.interfaces import ( |
---|
[8174] | 34 | IPaymentsContainer, IOnlinePayment) |
---|
[7915] | 35 | from waeup.kofa.university.vocabularies import ( |
---|
[14642] | 36 | CourseSource, StudyModeSource, CertificateSource, |
---|
| 37 | SemesterSource, CourseCategorySource |
---|
[11450] | 38 | ) |
---|
[6621] | 39 | |
---|
[9864] | 40 | class PreviousPaymentCategorySource(ContextualDictSourceFactoryBase): |
---|
| 41 | """A source that delivers all selectable categories of previous session |
---|
| 42 | payments. |
---|
| 43 | """ |
---|
| 44 | #: name of dict to deliver from kofa utils. |
---|
| 45 | DICT_NAME = 'PREVIOUS_PAYMENT_CATEGORIES' |
---|
| 46 | |
---|
[9868] | 47 | class BalancePaymentCategorySource(ContextualDictSourceFactoryBase): |
---|
[9864] | 48 | """A source that delivers all selectable items of balance payments. |
---|
| 49 | """ |
---|
| 50 | #: name of dict to deliver from kofa utils. |
---|
[9868] | 51 | DICT_NAME = 'BALANCE_PAYMENT_CATEGORIES' |
---|
[9864] | 52 | |
---|
[7620] | 53 | # VerdictSource can't be placed into the vocabularies module because it |
---|
| 54 | # requires importing IStudentsUtils which then leads to circular imports. |
---|
| 55 | class VerdictSource(BasicContextualSourceFactory): |
---|
| 56 | """A verdicts source delivers all verdicts provided |
---|
| 57 | in the portal. |
---|
| 58 | """ |
---|
| 59 | def getValues(self, context): |
---|
[13125] | 60 | verdicts_dict = getUtility(IKofaUtils).VERDICTS_DICT |
---|
[8820] | 61 | return sorted(verdicts_dict.keys()) |
---|
[7620] | 62 | |
---|
| 63 | def getToken(self, context, value): |
---|
| 64 | return value |
---|
| 65 | |
---|
| 66 | def getTitle(self, context, value): |
---|
[13125] | 67 | verdicts_dict = getUtility(IKofaUtils).VERDICTS_DICT |
---|
[8820] | 68 | if value != '0': |
---|
| 69 | return verdicts_dict[value] + ' (%s)' % value |
---|
[7688] | 70 | return verdicts_dict[value] |
---|
[7620] | 71 | |
---|
[7681] | 72 | |
---|
[7150] | 73 | class IStudentsUtils(Interface): |
---|
| 74 | """A collection of methods which are subject to customization. |
---|
| 75 | """ |
---|
[7841] | 76 | def setReturningData(student): |
---|
| 77 | """ This method defines what happens after school fee payment |
---|
| 78 | depending on the student's senate verdict. |
---|
| 79 | |
---|
| 80 | In the base configuration current level is always increased |
---|
| 81 | by 100 no matter which verdict has been assigned. |
---|
| 82 | """ |
---|
| 83 | |
---|
[9148] | 84 | def setPaymentDetails(category, student, previous_session=None, |
---|
| 85 | previous_level=None,): |
---|
[8595] | 86 | """Create Payment object and set the payment data of a student for |
---|
| 87 | the payment category specified. |
---|
[12902] | 88 | """ |
---|
[7150] | 89 | |
---|
[12902] | 90 | def increaseMatricInteger(student): |
---|
| 91 | """Increase counter for matric numbers. |
---|
| 92 | |
---|
| 93 | This counter can be a centrally stored attribute or an attribute of |
---|
| 94 | faculties, departments or certificates. In the base package the counter |
---|
| 95 | is as an attribute of the site configuration object. |
---|
[7150] | 96 | """ |
---|
| 97 | |
---|
[12902] | 98 | def constructMatricNumber(student): |
---|
| 99 | """Fetch the matric number counter which fits the student and |
---|
| 100 | construct the new matric number of the student. |
---|
| 101 | |
---|
| 102 | In the base package the counter is returned which is as an attribute |
---|
| 103 | of the site configuration object. |
---|
| 104 | """ |
---|
| 105 | |
---|
[11589] | 106 | def setMatricNumber(student): |
---|
| 107 | """Set matriculation number of student. |
---|
| 108 | |
---|
| 109 | If the student's matric number is unset a new matric number is |
---|
[12902] | 110 | constructed according to the matriculation number construction rules |
---|
| 111 | defined in the constructMatricNumber method. The new matric number is |
---|
| 112 | set, the students catalog updated. The corresponding matric number |
---|
| 113 | counter is increased by one. |
---|
[11589] | 114 | |
---|
| 115 | This method is tested but not used in the base package. It can |
---|
| 116 | be used in custom packages by adding respective views |
---|
[12902] | 117 | and by customizing increaseMatricInteger and constructMatricNumber |
---|
| 118 | according to the university's matriculation number construction rules. |
---|
[11589] | 119 | |
---|
[12902] | 120 | The method can be disabled by setting the counter to zero. |
---|
[11589] | 121 | """ |
---|
| 122 | |
---|
[7186] | 123 | def getAccommodation_details(student): |
---|
[7150] | 124 | """Determine the accommodation dates of a student. |
---|
| 125 | """ |
---|
| 126 | |
---|
[7186] | 127 | def selectBed(available_beds): |
---|
[7150] | 128 | """Select a bed from a list of available beds. |
---|
| 129 | In the standard configuration we select the first bed found, |
---|
| 130 | but can also randomize the selection if we like. |
---|
| 131 | """ |
---|
| 132 | |
---|
[14655] | 133 | def getDegreeClassNumber(level_obj): |
---|
| 134 | """Get degree class number (used for SessionResultsPresentation |
---|
| 135 | reports). |
---|
| 136 | """ |
---|
| 137 | |
---|
[9949] | 138 | def getPDFCreator(context): |
---|
| 139 | """Get some IPDFCreator instance suitable for use with `context`. |
---|
| 140 | """ |
---|
| 141 | |
---|
[7186] | 142 | def renderPDF(view, subject='', filename='slip.pdf',): |
---|
[7150] | 143 | """Render pdf slips for various pages. |
---|
| 144 | """ |
---|
| 145 | |
---|
[14655] | 146 | def renderPDFAdmissionLetter(view, student=None, omit_fields=(), |
---|
| 147 | pre_text=None, post_text=None,): |
---|
| 148 | """Render pdf admission letter. |
---|
[14157] | 149 | """ |
---|
| 150 | |
---|
[14583] | 151 | def renderPDFTranscript(view, filename, student, |
---|
| 152 | studentview, note, signatures, sigs_in_footer, |
---|
| 153 | show_scans, topMargin, omit_fields, |
---|
| 154 | tableheader, no_passport): |
---|
| 155 | """Render pdf slip of a transcripts. |
---|
| 156 | """ |
---|
| 157 | |
---|
[14702] | 158 | def renderPDFCourseticketsOverview( |
---|
[15246] | 159 | view, session, data, lecturers, orientation, |
---|
| 160 | title_length, note): |
---|
[14583] | 161 | """Render pdf slip of course tickets for a lecturer. |
---|
| 162 | """ |
---|
| 163 | |
---|
[14584] | 164 | def warnCreditsOOR(studylevel, course=None): |
---|
| 165 | """Return message if credits are out of range. In the base |
---|
| 166 | package only maximum credits is set. |
---|
[14583] | 167 | """ |
---|
| 168 | |
---|
| 169 | def getBedCoordinates(bedticket): |
---|
| 170 | """Return descriptive bed coordinates. |
---|
| 171 | This method can be used to customize the `display_coordinates` |
---|
| 172 | property method in order to display a |
---|
| 173 | customary description of the bed space. |
---|
| 174 | """ |
---|
| 175 | |
---|
| 176 | def clearance_disabled_message(student): |
---|
| 177 | """Render message if clearance is disabled. |
---|
| 178 | """ |
---|
| 179 | |
---|
[7819] | 180 | class IStudentsContainer(IKofaObject): |
---|
[7096] | 181 | """A students container contains university students. |
---|
[6692] | 182 | """ |
---|
| 183 | def addStudent(student): |
---|
| 184 | """Add an IStudent object and subcontainers. |
---|
| 185 | """ |
---|
| 186 | |
---|
[13736] | 187 | unique_student_id = Attribute('A unique student id') |
---|
[8408] | 188 | |
---|
[9217] | 189 | class IStudentNavigation(IStudentNavigationBase): |
---|
[13003] | 190 | """Interface needed for navigation and logging. This interface is |
---|
[13076] | 191 | implemented by all content classes in the students section. |
---|
[6642] | 192 | """ |
---|
[13003] | 193 | student = Attribute('Student object of context') |
---|
[7150] | 194 | |
---|
[8735] | 195 | def writeLogMessage(view, message): |
---|
[13167] | 196 | """Add an INFO message to students.log. |
---|
[8735] | 197 | """ |
---|
| 198 | |
---|
[7819] | 199 | class IStudentBase(IKofaObject): |
---|
[6631] | 200 | """Representation of student base data. |
---|
[6621] | 201 | """ |
---|
[12997] | 202 | history = Attribute('Object history, a list of messages') |
---|
| 203 | state = Attribute('Registration state') |
---|
[13080] | 204 | translated_state = Attribute('Real name of the registration state') |
---|
[12997] | 205 | certcode = Attribute('Certificate code of any chosen study course') |
---|
| 206 | depcode = Attribute('Department code of any chosen study course') |
---|
| 207 | faccode = Attribute('Faculty code of any chosen study course') |
---|
| 208 | entry_session = Attribute('Entry session') |
---|
| 209 | current_session = Attribute('Current session') |
---|
| 210 | current_level = Attribute('Current level') |
---|
| 211 | current_mode = Attribute('Current mode') |
---|
| 212 | current_verdict = Attribute('Current verdict') |
---|
[7364] | 213 | fullname = Attribute('All name parts separated by hyphens') |
---|
[12997] | 214 | display_fullname = Attribute('Fullname as displayed on pages') |
---|
[8969] | 215 | is_postgrad = Attribute('True if postgraduate student') |
---|
[12997] | 216 | is_special_postgrad = Attribute('True if special postgraduate student') |
---|
| 217 | is_fresh = Attribute('True if fresh student') |
---|
| 218 | before_payment = Attribute('True if no previous payment has to be made') |
---|
| 219 | personal_data_expired = Attribute('True if personal data expired') |
---|
| 220 | transcript_enabled = Attribute('True if transcript processing is enabled') |
---|
[13103] | 221 | clearance_locked = Attribute('True if clearance form is locked') |
---|
[15163] | 222 | studycourse_locked = Attribute( |
---|
| 223 | 'True if nobody is allowed to change studycourse, studylecel or ' |
---|
| 224 | 'course ticket data, neither through the UI nor via import') |
---|
[6637] | 225 | |
---|
[13003] | 226 | password = Attribute('Encrypted password') |
---|
| 227 | temp_password = Attribute('Dictionary with user name, timestamp and encrypted password') |
---|
| 228 | |
---|
[8983] | 229 | suspended = schema.Bool( |
---|
| 230 | title = _(u'Account suspended'), |
---|
| 231 | default = False, |
---|
[9035] | 232 | required = False, |
---|
[8983] | 233 | ) |
---|
| 234 | |
---|
[9702] | 235 | suspended_comment = schema.Text( |
---|
| 236 | title = _(u"Reasons for Deactivation"), |
---|
| 237 | required = False, |
---|
| 238 | description = _( |
---|
| 239 | u'This message will be shown if and only if deactivated ' |
---|
| 240 | 'students try to login.'), |
---|
| 241 | ) |
---|
| 242 | |
---|
[13711] | 243 | flash_notice = schema.TextLine( |
---|
| 244 | title = _(u'Flash Notice'), |
---|
| 245 | required = False, |
---|
| 246 | readonly = False, |
---|
| 247 | description = _( |
---|
| 248 | u'This single-line message will be shown in a flash box.'), |
---|
| 249 | ) |
---|
| 250 | |
---|
[6665] | 251 | student_id = schema.TextLine( |
---|
[7723] | 252 | title = _(u'Student Id'), |
---|
[6849] | 253 | required = False, |
---|
[6665] | 254 | ) |
---|
| 255 | |
---|
[7357] | 256 | firstname = schema.TextLine( |
---|
[7723] | 257 | title = _(u'First Name'), |
---|
[6621] | 258 | required = True, |
---|
| 259 | ) |
---|
| 260 | |
---|
[7357] | 261 | middlename = schema.TextLine( |
---|
[7723] | 262 | title = _(u'Middle Name'), |
---|
[7357] | 263 | required = False, |
---|
| 264 | ) |
---|
| 265 | |
---|
| 266 | lastname = schema.TextLine( |
---|
[7723] | 267 | title = _(u'Last Name (Surname)'), |
---|
[7357] | 268 | required = True, |
---|
| 269 | ) |
---|
| 270 | |
---|
[6996] | 271 | sex = schema.Choice( |
---|
[7723] | 272 | title = _(u'Sex'), |
---|
[6996] | 273 | source = GenderSource(), |
---|
| 274 | required = True, |
---|
| 275 | ) |
---|
| 276 | |
---|
[6788] | 277 | reg_number = TextLineChoice( |
---|
[7723] | 278 | title = _(u'Registration Number'), |
---|
[6696] | 279 | required = True, |
---|
| 280 | readonly = False, |
---|
[6788] | 281 | source = contextual_reg_num_source, |
---|
[6696] | 282 | ) |
---|
| 283 | |
---|
[6788] | 284 | matric_number = TextLineChoice( |
---|
[7723] | 285 | title = _(u'Matriculation Number'), |
---|
[6750] | 286 | required = False, |
---|
| 287 | readonly = False, |
---|
[6788] | 288 | source = contextual_mat_num_source, |
---|
[6750] | 289 | ) |
---|
| 290 | |
---|
[6769] | 291 | adm_code = schema.TextLine( |
---|
[7723] | 292 | title = _(u'PWD Activation Code'), |
---|
[6769] | 293 | required = False, |
---|
[8977] | 294 | readonly = False, |
---|
[6769] | 295 | ) |
---|
| 296 | |
---|
[7133] | 297 | email = schema.ASCIILine( |
---|
[7723] | 298 | title = _(u'Email'), |
---|
[13345] | 299 | required = False, |
---|
[7133] | 300 | constraint=validate_email, |
---|
| 301 | ) |
---|
[8176] | 302 | phone = PhoneNumber( |
---|
[7723] | 303 | title = _(u'Phone'), |
---|
[7133] | 304 | required = False, |
---|
| 305 | ) |
---|
| 306 | |
---|
[9334] | 307 | def setTempPassword(user, password): |
---|
| 308 | """Set a temporary password (LDAP-compatible) SSHA encoded for |
---|
| 309 | officers. |
---|
| 310 | """ |
---|
| 311 | |
---|
| 312 | def getTempPassword(): |
---|
| 313 | """Check if a temporary password has been set and if it |
---|
[12997] | 314 | is not expired. Return the temporary password if valid, |
---|
[9334] | 315 | None otherwise. Unset the temporary password if expired. |
---|
| 316 | """ |
---|
| 317 | |
---|
[9131] | 318 | def transfer(certificate, current_session, |
---|
| 319 | current_level, current_verdict): |
---|
| 320 | """ Creates a new studycourse and backups the old one. |
---|
[12997] | 321 | """ |
---|
[9131] | 322 | |
---|
[12997] | 323 | def revert_transfer(): |
---|
| 324 | """ Revert previous transfer. |
---|
[9131] | 325 | """ |
---|
| 326 | |
---|
[7993] | 327 | class IUGStudentClearance(IKofaObject): |
---|
| 328 | """Representation of undergraduate student clearance data. |
---|
[6631] | 329 | """ |
---|
[9543] | 330 | officer_comment = schema.Text( |
---|
| 331 | title = _(u"Officer's Comment"), |
---|
| 332 | required = False, |
---|
[6631] | 333 | ) |
---|
| 334 | |
---|
[6769] | 335 | clr_code = schema.TextLine( |
---|
[7723] | 336 | title = _(u'CLR Activation Code'), |
---|
[6769] | 337 | required = False, |
---|
[8977] | 338 | readonly = False, |
---|
[6769] | 339 | ) |
---|
| 340 | |
---|
[9543] | 341 | date_of_birth = FormattedDate( |
---|
| 342 | title = _(u'Date of Birth'), |
---|
| 343 | required = True, |
---|
| 344 | show_year = True, |
---|
| 345 | ) |
---|
| 346 | |
---|
[7523] | 347 | nationality = schema.Choice( |
---|
[8069] | 348 | vocabulary = nats_vocab, |
---|
[7723] | 349 | title = _(u'Nationality'), |
---|
[7983] | 350 | required = False, |
---|
[7523] | 351 | ) |
---|
| 352 | |
---|
[7993] | 353 | class IPGStudentClearance(IUGStudentClearance): |
---|
| 354 | """Representation of postgraduate student clearance data. |
---|
| 355 | """ |
---|
| 356 | employer = schema.TextLine( |
---|
| 357 | title = _(u'Employer'), |
---|
| 358 | required = False, |
---|
| 359 | readonly = False, |
---|
| 360 | ) |
---|
| 361 | |
---|
[7819] | 362 | class IStudentPersonal(IKofaObject): |
---|
[6631] | 363 | """Representation of student personal data. |
---|
| 364 | """ |
---|
[9543] | 365 | personal_updated = schema.Datetime( |
---|
| 366 | title = _(u'Updated'), |
---|
| 367 | required = False, |
---|
| 368 | readonly = False, |
---|
| 369 | ) |
---|
| 370 | |
---|
[6651] | 371 | perm_address = schema.Text( |
---|
[7723] | 372 | title = _(u'Permanent Address'), |
---|
[6631] | 373 | required = False, |
---|
| 374 | ) |
---|
| 375 | |
---|
[8008] | 376 | class IStudent(IStudentBase,IUGStudentClearance,IPGStudentClearance, |
---|
[15163] | 377 | IStudentPersonal): |
---|
[6631] | 378 | """Representation of a student. |
---|
| 379 | """ |
---|
| 380 | |
---|
[9563] | 381 | class IStudentPersonalEdit(IStudentPersonal): |
---|
| 382 | """Interface for editing personal data by students. |
---|
| 383 | Here we can repeat the fields from IStudentPersonal and set the |
---|
| 384 | `required` if necessary. |
---|
| 385 | """ |
---|
| 386 | |
---|
| 387 | perm_address = schema.Text( |
---|
| 388 | title = _(u'Permanent Address'), |
---|
| 389 | required = True, |
---|
| 390 | ) |
---|
| 391 | |
---|
[6849] | 392 | class IStudentUpdateByRegNo(IStudent): |
---|
| 393 | """Representation of a student. Skip regular reg_number validation. |
---|
| 394 | """ |
---|
| 395 | reg_number = schema.TextLine( |
---|
[7723] | 396 | title = _(u'Registration Number'), |
---|
[6849] | 397 | required = False, |
---|
| 398 | ) |
---|
| 399 | |
---|
| 400 | class IStudentUpdateByMatricNo(IStudent): |
---|
| 401 | """Representation of a student. Skip regular matric_number validation. |
---|
| 402 | """ |
---|
| 403 | matric_number = schema.TextLine( |
---|
[7723] | 404 | title = _(u'Matriculation Number'), |
---|
[6849] | 405 | required = False, |
---|
| 406 | ) |
---|
| 407 | |
---|
[8779] | 408 | class IStudentRequestPW(IStudent): |
---|
[12999] | 409 | """Representation of a student for first-time password request. |
---|
[8779] | 410 | This interface is used when students use the requestpw page to |
---|
| 411 | login for the the first time. |
---|
| 412 | """ |
---|
[8854] | 413 | number = schema.TextLine( |
---|
| 414 | title = _(u'Registr. or Matric. Number'), |
---|
[8779] | 415 | required = True, |
---|
| 416 | ) |
---|
| 417 | |
---|
| 418 | firstname = schema.TextLine( |
---|
| 419 | title = _(u'First Name'), |
---|
| 420 | required = True, |
---|
| 421 | ) |
---|
| 422 | |
---|
| 423 | email = schema.ASCIILine( |
---|
| 424 | title = _(u'Email Address'), |
---|
| 425 | required = True, |
---|
| 426 | constraint=validate_email, |
---|
| 427 | ) |
---|
| 428 | |
---|
[7819] | 429 | class IStudentStudyCourse(IKofaObject): |
---|
[12999] | 430 | """Representation of student study course data. |
---|
[6633] | 431 | """ |
---|
[13002] | 432 | next_session_allowed = Attribute('True if the student can proceed to next session') |
---|
| 433 | is_postgrad = Attribute('True if student is postgraduate student') |
---|
| 434 | is_current = Attribute('True if the study course is the current course of studies') |
---|
| 435 | is_previous = Attribute('True if the study course is the previous course of studies') |
---|
| 436 | |
---|
[6648] | 437 | certificate = schema.Choice( |
---|
[7723] | 438 | title = _(u'Certificate'), |
---|
[6648] | 439 | source = CertificateSource(), |
---|
[7209] | 440 | required = False, |
---|
[6633] | 441 | ) |
---|
[6635] | 442 | |
---|
[6996] | 443 | entry_mode = schema.Choice( |
---|
[7723] | 444 | title = _(u'Entry Mode'), |
---|
[7681] | 445 | source = StudyModeSource(), |
---|
[6996] | 446 | required = True, |
---|
| 447 | readonly = False, |
---|
| 448 | ) |
---|
| 449 | |
---|
| 450 | entry_session = schema.Choice( |
---|
[7723] | 451 | title = _(u'Entry Session'), |
---|
[6996] | 452 | source = academic_sessions_vocab, |
---|
[7425] | 453 | #default = datetime.now().year, |
---|
[6996] | 454 | required = True, |
---|
| 455 | readonly = False, |
---|
| 456 | ) |
---|
| 457 | |
---|
[6724] | 458 | current_session = schema.Choice( |
---|
[7723] | 459 | title = _(u'Current Session'), |
---|
[6744] | 460 | source = academic_sessions_vocab, |
---|
[6724] | 461 | required = True, |
---|
[6996] | 462 | readonly = False, |
---|
[6724] | 463 | ) |
---|
| 464 | |
---|
| 465 | current_level = schema.Choice( |
---|
[7723] | 466 | title = _(u'Current Level'), |
---|
[6725] | 467 | source = StudyLevelSource(), |
---|
| 468 | required = False, |
---|
[6996] | 469 | readonly = False, |
---|
[6724] | 470 | ) |
---|
| 471 | |
---|
| 472 | current_verdict = schema.Choice( |
---|
[7723] | 473 | title = _(u'Current Verdict'), |
---|
[7619] | 474 | source = VerdictSource(), |
---|
[8820] | 475 | default = '0', |
---|
[6725] | 476 | required = False, |
---|
[6724] | 477 | ) |
---|
| 478 | |
---|
| 479 | previous_verdict = schema.Choice( |
---|
[7723] | 480 | title = _(u'Previous Verdict'), |
---|
[7619] | 481 | source = VerdictSource(), |
---|
[8820] | 482 | default = '0', |
---|
[6725] | 483 | required = False, |
---|
[6724] | 484 | ) |
---|
| 485 | |
---|
[13002] | 486 | def addStudentStudyLevel(cert, studylevel): |
---|
| 487 | """Add a study level object. |
---|
| 488 | """ |
---|
| 489 | |
---|
| 490 | def getTranscriptData(): |
---|
| 491 | """Get a sorted list of dicts with level and course ticket data. |
---|
| 492 | This method is used for transcripts. |
---|
| 493 | """ |
---|
| 494 | |
---|
[9138] | 495 | class IStudentStudyCourseTransfer(IStudentStudyCourse): |
---|
[12999] | 496 | """An interface used for student transfers. |
---|
[9138] | 497 | """ |
---|
| 498 | certificate = schema.Choice( |
---|
| 499 | title = _(u'Certificate'), |
---|
| 500 | source = CertificateSource(), |
---|
| 501 | required = True, |
---|
| 502 | ) |
---|
| 503 | |
---|
| 504 | current_level = schema.Choice( |
---|
| 505 | title = _(u'Current Level'), |
---|
| 506 | source = StudyLevelSource(), |
---|
| 507 | required = True, |
---|
| 508 | readonly = False, |
---|
| 509 | ) |
---|
| 510 | |
---|
[9960] | 511 | entry_session = schema.Choice( |
---|
| 512 | title = _(u'Entry Session'), |
---|
| 513 | source = academic_sessions_vocab, |
---|
| 514 | #default = datetime.now().year, |
---|
| 515 | required = False, |
---|
| 516 | readonly = False, |
---|
| 517 | ) |
---|
| 518 | |
---|
| 519 | |
---|
[9138] | 520 | IStudentStudyCourseTransfer['certificate'].order = IStudentStudyCourse[ |
---|
| 521 | 'certificate'].order |
---|
| 522 | IStudentStudyCourseTransfer['current_level'].order = IStudentStudyCourse[ |
---|
| 523 | 'current_level'].order |
---|
| 524 | |
---|
[7951] | 525 | class IStudentVerdictUpdate(IKofaObject): |
---|
| 526 | """A interface for verdict imports. |
---|
| 527 | """ |
---|
| 528 | current_verdict = schema.Choice( |
---|
| 529 | title = _(u'Current Verdict'), |
---|
| 530 | source = VerdictSource(), |
---|
| 531 | required = True, |
---|
| 532 | ) |
---|
| 533 | |
---|
| 534 | current_session = schema.Choice( |
---|
| 535 | title = _(u'Current Session'), |
---|
| 536 | source = academic_sessions_vocab, |
---|
| 537 | required = True, |
---|
| 538 | ) |
---|
| 539 | |
---|
| 540 | current_level = schema.Choice( |
---|
| 541 | title = _(u'Current Level'), |
---|
| 542 | source = StudyLevelSource(), |
---|
| 543 | required = True, |
---|
| 544 | ) |
---|
| 545 | |
---|
[9296] | 546 | bypass_validation = schema.Bool( |
---|
| 547 | title = _(u'Bypass validation'), |
---|
| 548 | required = False, |
---|
| 549 | ) |
---|
| 550 | |
---|
| 551 | validated_by = schema.TextLine( |
---|
| 552 | title = _(u'Validated by'), |
---|
| 553 | required = False, |
---|
| 554 | ) |
---|
| 555 | |
---|
[7819] | 556 | class IStudentStudyLevel(IKofaObject): |
---|
[12999] | 557 | """A representation of student study level data. |
---|
[6774] | 558 | """ |
---|
[13002] | 559 | certcode = Attribute('The certificate code of the study course') |
---|
| 560 | is_current_level = Attribute('True if level is current level of the student') |
---|
| 561 | level_title = Attribute('Level title from source') |
---|
| 562 | getSessionString = Attribute('Session title from source') |
---|
[9235] | 563 | number_of_tickets = Attribute('Number of tickets contained in this level') |
---|
[10553] | 564 | passed_params = Attribute('Information about passed and failed courses') |
---|
[13002] | 565 | gpa_params_rectified = Attribute('Corrected sessional GPA parameters') |
---|
| 566 | gpa_params = Attribute('GPA parameters for this level.') |
---|
[14247] | 567 | cumulative_params = Attribute( |
---|
| 568 | 'Cumulative GPA and other cumulative parameters for this level') |
---|
| 569 | course_registration_forbidden = Attribute( |
---|
| 570 | 'Return error message if course registration is forbidden') |
---|
[6774] | 571 | |
---|
[12873] | 572 | level = schema.Choice( |
---|
| 573 | title = _(u'Level'), |
---|
| 574 | source = StudyLevelSource(), |
---|
| 575 | required = True, |
---|
| 576 | readonly = False, |
---|
| 577 | ) |
---|
| 578 | |
---|
[6793] | 579 | level_session = schema.Choice( |
---|
[7723] | 580 | title = _(u'Session'), |
---|
[6793] | 581 | source = academic_sessions_vocab, |
---|
[9437] | 582 | required = True, |
---|
[6793] | 583 | ) |
---|
[6781] | 584 | |
---|
[6793] | 585 | level_verdict = schema.Choice( |
---|
[7723] | 586 | title = _(u'Verdict'), |
---|
[7619] | 587 | source = VerdictSource(), |
---|
[8820] | 588 | default = '0', |
---|
[6793] | 589 | required = False, |
---|
| 590 | ) |
---|
| 591 | |
---|
[9161] | 592 | validated_by = schema.TextLine( |
---|
| 593 | title = _(u'Validated by'), |
---|
| 594 | default = None, |
---|
| 595 | required = False, |
---|
| 596 | ) |
---|
| 597 | |
---|
| 598 | validation_date = schema.Datetime( |
---|
| 599 | title = _(u'Validation Date'), |
---|
| 600 | required = False, |
---|
| 601 | readonly = False, |
---|
| 602 | ) |
---|
| 603 | |
---|
[9690] | 604 | total_credits = schema.Int( |
---|
| 605 | title = _(u'Total Credits'), |
---|
| 606 | required = False, |
---|
| 607 | readonly = True, |
---|
| 608 | ) |
---|
| 609 | |
---|
[14574] | 610 | gpa = schema.TextLine( |
---|
[10479] | 611 | title = _(u'Unrectified GPA'), |
---|
| 612 | required = False, |
---|
| 613 | readonly = True, |
---|
| 614 | ) |
---|
[9690] | 615 | |
---|
[15333] | 616 | transcript_remark = schema.TextLine( |
---|
| 617 | title = _(u'Transcript Remark'), |
---|
| 618 | required = False, |
---|
| 619 | readonly = False, |
---|
| 620 | ) |
---|
| 621 | |
---|
[8920] | 622 | def addCourseTicket(ticket, course): |
---|
[8182] | 623 | """Add a course ticket object. |
---|
| 624 | """ |
---|
| 625 | |
---|
[9501] | 626 | def addCertCourseTickets(cert): |
---|
| 627 | """Collect all certificate courses and create course |
---|
| 628 | tickets automatically. |
---|
| 629 | """ |
---|
| 630 | |
---|
[14684] | 631 | def updateCourseTicket(ticket, course): |
---|
| 632 | """Updates a course ticket object and return code |
---|
| 633 | if ticket has been invalidated. |
---|
| 634 | """ |
---|
| 635 | |
---|
[7819] | 636 | class ICourseTicket(IKofaObject): |
---|
[12999] | 637 | """A representation of course ticket data. |
---|
[6781] | 638 | """ |
---|
[13003] | 639 | certcode = Attribute('Certificate code of the study course') |
---|
| 640 | level_session = Attribute('Session of the study level the ticket has been added to') |
---|
| 641 | level = Attribute('Level value of the study level the ticket has been added to') |
---|
[14133] | 642 | total_score = Attribute('Score') |
---|
| 643 | grade = Attribute('Grade calculated from total score') |
---|
| 644 | weight = Attribute('Weight calculated from total score') |
---|
[13003] | 645 | removable_by_student = Attribute('True if student is allowed to remove the ticket') |
---|
| 646 | editable_by_lecturer = Attribute('True if lecturer is allowed to edit the ticket') |
---|
[6781] | 647 | |
---|
[13003] | 648 | code = Attribute('Code of the original course') |
---|
| 649 | |
---|
[9420] | 650 | title = schema.TextLine( |
---|
| 651 | title = _(u'Title'), |
---|
| 652 | required = False, |
---|
| 653 | ) |
---|
| 654 | |
---|
| 655 | fcode = schema.TextLine( |
---|
| 656 | title = _(u'Faculty Code'), |
---|
| 657 | required = False, |
---|
| 658 | ) |
---|
| 659 | |
---|
| 660 | dcode = schema.TextLine( |
---|
| 661 | title = _(u'Department Code'), |
---|
| 662 | required = False, |
---|
| 663 | ) |
---|
| 664 | |
---|
| 665 | semester = schema.Choice( |
---|
| 666 | title = _(u'Semester/Term'), |
---|
| 667 | source = SemesterSource(), |
---|
| 668 | required = False, |
---|
| 669 | ) |
---|
| 670 | |
---|
[15203] | 671 | ticket_session = schema.Choice( |
---|
| 672 | title = _(u'Imported Session'), |
---|
| 673 | source = academic_sessions_vocab, |
---|
| 674 | required = False, |
---|
| 675 | ) |
---|
| 676 | |
---|
[9420] | 677 | passmark = schema.Int( |
---|
| 678 | title = _(u'Passmark'), |
---|
| 679 | required = False, |
---|
| 680 | ) |
---|
| 681 | |
---|
| 682 | credits = schema.Int( |
---|
| 683 | title = _(u'Credits'), |
---|
| 684 | required = False, |
---|
| 685 | ) |
---|
| 686 | |
---|
[7665] | 687 | mandatory = schema.Bool( |
---|
[9320] | 688 | title = _(u'Required'), |
---|
[6795] | 689 | default = False, |
---|
| 690 | required = False, |
---|
| 691 | ) |
---|
| 692 | |
---|
[14574] | 693 | outstanding = schema.Bool( |
---|
| 694 | title = _(u'Outstanding Course'), |
---|
| 695 | default = False, |
---|
| 696 | required = False, |
---|
| 697 | ) |
---|
| 698 | |
---|
[14642] | 699 | course_category = schema.Choice( |
---|
| 700 | title = _(u'Course Category'), |
---|
| 701 | source = CourseCategorySource(), |
---|
| 702 | required = False, |
---|
| 703 | ) |
---|
| 704 | |
---|
[6781] | 705 | score = schema.Int( |
---|
[7723] | 706 | title = _(u'Score'), |
---|
[9684] | 707 | default = None, |
---|
[6781] | 708 | required = False, |
---|
[10637] | 709 | missing_value = None, |
---|
[6781] | 710 | ) |
---|
| 711 | |
---|
[7661] | 712 | carry_over = schema.Bool( |
---|
[7723] | 713 | title = _(u'Carry-over Course'), |
---|
[7661] | 714 | default = False, |
---|
| 715 | required = False, |
---|
| 716 | ) |
---|
| 717 | |
---|
[9420] | 718 | automatic = schema.Bool( |
---|
| 719 | title = _(u'Automatical Creation'), |
---|
| 720 | default = False, |
---|
[9316] | 721 | required = False, |
---|
| 722 | ) |
---|
| 723 | |
---|
[9420] | 724 | class ICourseTicketAdd(IKofaObject): |
---|
[7150] | 725 | """An interface for adding course tickets. |
---|
[6795] | 726 | """ |
---|
| 727 | course = schema.Choice( |
---|
[7723] | 728 | title = _(u'Course'), |
---|
[6795] | 729 | source = CourseSource(), |
---|
| 730 | readonly = False, |
---|
| 731 | ) |
---|
| 732 | |
---|
[9420] | 733 | class ICourseTicketImport(ICourseTicket): |
---|
| 734 | """An interface for importing course results and nothing more. |
---|
| 735 | """ |
---|
| 736 | score = schema.Int( |
---|
| 737 | title = _(u'Score'), |
---|
| 738 | required = False, |
---|
| 739 | readonly = False, |
---|
| 740 | ) |
---|
| 741 | |
---|
| 742 | level_session = schema.Choice( |
---|
| 743 | title = _(u'Level Session'), |
---|
| 744 | source = academic_sessions_vocab, |
---|
| 745 | required = False, |
---|
| 746 | readonly = False, |
---|
| 747 | ) |
---|
| 748 | |
---|
[7819] | 749 | class IStudentAccommodation(IKofaObject): |
---|
[6635] | 750 | """A container for student accommodation objects. |
---|
| 751 | """ |
---|
| 752 | |
---|
[13457] | 753 | desired_hostel = schema.TextLine( |
---|
| 754 | title = _(u'Desired Hostel'), |
---|
| 755 | required = False, |
---|
| 756 | ) |
---|
| 757 | |
---|
[9423] | 758 | def addBedTicket(bedticket): |
---|
| 759 | """Add a bed ticket object. |
---|
| 760 | """ |
---|
| 761 | |
---|
| 762 | |
---|
[7819] | 763 | class IBedTicket(IKofaObject): |
---|
[12999] | 764 | """A representation of accommodation booking data. |
---|
[6989] | 765 | """ |
---|
[13314] | 766 | bed = Attribute('The bed object') |
---|
| 767 | maint_payment_made = Attribute('True if maintenance payment is made') |
---|
[6996] | 768 | |
---|
[13012] | 769 | display_coordinates = schema.TextLine( |
---|
| 770 | title = _(u'Allocated Bed'), |
---|
| 771 | required = False, |
---|
| 772 | readonly = True, |
---|
| 773 | ) |
---|
| 774 | |
---|
[6996] | 775 | bed_coordinates = schema.TextLine( |
---|
[9984] | 776 | title = u'', |
---|
[9423] | 777 | required = True, |
---|
[7014] | 778 | readonly = False, |
---|
[6992] | 779 | ) |
---|
| 780 | |
---|
[6996] | 781 | bed_type = schema.TextLine( |
---|
[9424] | 782 | title = _(u'Requested Bed Type'), |
---|
[9423] | 783 | required = True, |
---|
[7014] | 784 | readonly = False, |
---|
[6996] | 785 | ) |
---|
| 786 | |
---|
[6992] | 787 | booking_session = schema.Choice( |
---|
[7723] | 788 | title = _(u'Session'), |
---|
[6992] | 789 | source = academic_sessions_vocab, |
---|
| 790 | required = True, |
---|
[13316] | 791 | readonly = False |
---|
[6992] | 792 | ) |
---|
| 793 | |
---|
[8170] | 794 | booking_date = schema.Datetime( |
---|
[7723] | 795 | title = _(u'Booking Date'), |
---|
[6992] | 796 | required = False, |
---|
[13316] | 797 | readonly = False, |
---|
[6992] | 798 | ) |
---|
| 799 | |
---|
| 800 | booking_code = schema.TextLine( |
---|
[7723] | 801 | title = _(u'Booking Activation Code'), |
---|
[6992] | 802 | required = False, |
---|
[13316] | 803 | readonly = False, |
---|
[6992] | 804 | ) |
---|
| 805 | |
---|
[6994] | 806 | def getSessionString(): |
---|
[13012] | 807 | """Returns the title of academic_sessions_vocab term of the session |
---|
| 808 | when the bed was booked. |
---|
[6994] | 809 | """ |
---|
[6992] | 810 | |
---|
[6860] | 811 | class IStudentPaymentsContainer(IPaymentsContainer): |
---|
[6635] | 812 | """A container for student payment objects. |
---|
| 813 | """ |
---|
| 814 | |
---|
[13736] | 815 | certificate = Attribute('Certificate to determine the correct p_level value') |
---|
| 816 | |
---|
[6877] | 817 | class IStudentOnlinePayment(IOnlinePayment): |
---|
| 818 | """A student payment via payment gateways. |
---|
| 819 | """ |
---|
| 820 | |
---|
[13736] | 821 | certificate = Attribute('Certificate to determine the correct p_level value') |
---|
[13871] | 822 | student = Attribute('Student') |
---|
[13736] | 823 | |
---|
[9148] | 824 | p_current = schema.Bool( |
---|
| 825 | title = _(u'Current Session Payment'), |
---|
| 826 | default = True, |
---|
| 827 | required = False, |
---|
| 828 | ) |
---|
| 829 | |
---|
[13733] | 830 | p_level = schema.Choice( |
---|
[8268] | 831 | title = _(u'Payment Level'), |
---|
[13733] | 832 | source = StudyLevelSource(), |
---|
[8268] | 833 | required = False, |
---|
| 834 | ) |
---|
[6877] | 835 | |
---|
[13871] | 836 | def redeemTicket(): |
---|
| 837 | """Either create an appropriate access code or trigger an action |
---|
| 838 | directly. |
---|
| 839 | """ |
---|
| 840 | |
---|
[8422] | 841 | def doAfterStudentPayment(): |
---|
| 842 | """Process student after payment was made. |
---|
| 843 | """ |
---|
| 844 | |
---|
[8453] | 845 | def doAfterStudentPaymentApproval(): |
---|
| 846 | """Process student after payment was approved. |
---|
| 847 | """ |
---|
| 848 | |
---|
[8420] | 849 | def approveStudentPayment(): |
---|
[8422] | 850 | """Approve payment and process student. |
---|
[8420] | 851 | """ |
---|
| 852 | |
---|
[8268] | 853 | IStudentOnlinePayment['p_level'].order = IStudentOnlinePayment[ |
---|
| 854 | 'p_session'].order |
---|
[8408] | 855 | |
---|
[9864] | 856 | class IStudentPreviousPayment(IKofaObject): |
---|
[9148] | 857 | """An interface for adding previous session payments. |
---|
| 858 | """ |
---|
| 859 | |
---|
[9864] | 860 | p_category = schema.Choice( |
---|
| 861 | title = _(u'Payment Category'), |
---|
| 862 | default = u'schoolfee', |
---|
| 863 | source = PreviousPaymentCategorySource(), |
---|
| 864 | required = True, |
---|
| 865 | ) |
---|
| 866 | |
---|
[9148] | 867 | p_session = schema.Choice( |
---|
| 868 | title = _(u'Payment Session'), |
---|
| 869 | source = academic_sessions_vocab, |
---|
| 870 | required = True, |
---|
| 871 | ) |
---|
| 872 | |
---|
| 873 | p_level = schema.Choice( |
---|
| 874 | title = _(u'Payment Level'), |
---|
| 875 | source = StudyLevelSource(), |
---|
| 876 | required = True, |
---|
| 877 | ) |
---|
| 878 | |
---|
[9864] | 879 | class IStudentBalancePayment(IKofaObject): |
---|
| 880 | """An interface for adding balances. |
---|
| 881 | """ |
---|
| 882 | |
---|
[9868] | 883 | p_category = schema.Choice( |
---|
[9864] | 884 | title = _(u'Payment Category'), |
---|
| 885 | default = u'schoolfee', |
---|
| 886 | required = True, |
---|
[9868] | 887 | source = BalancePaymentCategorySource(), |
---|
[9864] | 888 | ) |
---|
| 889 | |
---|
| 890 | balance_session = schema.Choice( |
---|
| 891 | title = _(u'Payment Session'), |
---|
| 892 | source = academic_sessions_vocab, |
---|
| 893 | required = True, |
---|
| 894 | ) |
---|
| 895 | |
---|
| 896 | balance_level = schema.Choice( |
---|
| 897 | title = _(u'Payment Level'), |
---|
| 898 | source = StudyLevelSource(), |
---|
| 899 | required = True, |
---|
| 900 | ) |
---|
| 901 | |
---|
| 902 | balance_amount = schema.Float( |
---|
| 903 | title = _(u'Balance Amount'), |
---|
[9874] | 904 | default = None, |
---|
[9864] | 905 | required = True, |
---|
| 906 | readonly = False, |
---|
| 907 | description = _( |
---|
| 908 | u'Balance in Naira '), |
---|
| 909 | ) |
---|
| 910 | |
---|
[8408] | 911 | class ICSVStudentExporter(ICSVExporter): |
---|
| 912 | """A regular ICSVExporter that additionally supports exporting |
---|
| 913 | data from a given student object. |
---|
| 914 | """ |
---|
[9801] | 915 | def get_filtered(site, **kw): |
---|
[9797] | 916 | """Get a filtered set of students. |
---|
| 917 | """ |
---|
[8408] | 918 | |
---|
[12518] | 919 | def get_selected(site, selected): |
---|
| 920 | """Get set of selected students. |
---|
| 921 | """ |
---|
| 922 | |
---|
[8408] | 923 | def export_student(student, filepath=None): |
---|
| 924 | """Export data for a given student. |
---|
| 925 | """ |
---|
[9734] | 926 | |
---|
[9797] | 927 | def export_filtered(site, filepath=None, **kw): |
---|
[12518] | 928 | """Export data for filtered set of students. |
---|
[9734] | 929 | """ |
---|
[12518] | 930 | |
---|
| 931 | def export_selected(site, filepath=None, **kw): |
---|
| 932 | """Export data for selected set of students. |
---|
| 933 | """ |
---|