[13814] | 1 | # -*- coding: utf-8 -*- |
---|
[7853] | 2 | ## $Id: interfaces.py 16153 2020-07-09 03:40:50Z henrik $ |
---|
| 3 | ## |
---|
| 4 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 5 | ## This program is free software; you can redistribute it and/or modify |
---|
| 6 | ## it under the terms of the GNU General Public License as published by |
---|
| 7 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 8 | ## (at your option) any later version. |
---|
| 9 | ## |
---|
| 10 | ## This program is distributed in the hope that it will be useful, |
---|
| 11 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 12 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 13 | ## GNU General Public License for more details. |
---|
| 14 | ## |
---|
| 15 | ## You should have received a copy of the GNU General Public License |
---|
| 16 | ## along with this program; if not, write to the Free Software |
---|
| 17 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 18 | ## |
---|
| 19 | """Customized interfaces of the university application package. |
---|
| 20 | """ |
---|
| 21 | |
---|
[13831] | 22 | #from grok import getSite |
---|
[8012] | 23 | from zope import schema |
---|
[13831] | 24 | #from zope.interface import invariant, Invalid |
---|
[16152] | 25 | from zope.component import getUtility |
---|
| 26 | from zope.catalog.interfaces import ICatalog |
---|
[13814] | 27 | from zc.sourcefactory.basic import BasicSourceFactory |
---|
[8051] | 28 | from waeup.kofa.applicants.interfaces import ( |
---|
[8053] | 29 | IApplicantBaseData, |
---|
[8051] | 30 | AppCatCertificateSource, CertificateSource) |
---|
[16078] | 31 | from waeup.kofa.university.vocabularies import StudyModeSource |
---|
| 32 | from waeup.kofa.students.vocabularies import ( |
---|
| 33 | nats_vocab, GenderSource, StudyLevelSource) |
---|
[8051] | 34 | from waeup.kofa.schoolgrades import ResultEntryField |
---|
[8530] | 35 | from waeup.kofa.interfaces import ( |
---|
[13814] | 36 | SimpleKofaVocabulary, academic_sessions_vocab, validate_email, |
---|
[16131] | 37 | IKofaObject, ContextualDictSourceFactoryBase) |
---|
[13814] | 38 | from waeup.kofa.schema import FormattedDate, TextLineChoice, PhoneNumber |
---|
[15490] | 39 | from waeup.kofa.students.vocabularies import ( |
---|
| 40 | nats_vocab, GenderSource) |
---|
[14106] | 41 | from waeup.kofa.refereeentries import RefereeEntryField |
---|
[8530] | 42 | from waeup.kofa.applicants.interfaces import contextual_reg_num_source |
---|
[15490] | 43 | from kofacustom.nigeria.interfaces import DisabilitiesSource |
---|
[8928] | 44 | from kofacustom.nigeria.applicants.interfaces import ( |
---|
| 45 | LGASource, high_qual, high_grade, exam_types, |
---|
[14140] | 46 | programme_types_vocab, jambsubjects, |
---|
[8928] | 47 | INigeriaUGApplicant, INigeriaPGApplicant, |
---|
| 48 | INigeriaApplicantOnlinePayment, |
---|
[9006] | 49 | INigeriaUGApplicantEdit, INigeriaPGApplicantEdit, |
---|
| 50 | INigeriaApplicantUpdateByRegNo, |
---|
| 51 | IPUTMEApplicantEdit, |
---|
[14140] | 52 | IBankAccount, |
---|
[8928] | 53 | ) |
---|
[8020] | 54 | from waeup.uniben.interfaces import MessageFactory as _ |
---|
[8247] | 55 | from waeup.uniben.payments.interfaces import ICustomOnlinePayment |
---|
[7853] | 56 | |
---|
[16152] | 57 | class TranscriptCertificateSource(CertificateSource): |
---|
| 58 | """Include Department and Faculty in Title. |
---|
| 59 | """ |
---|
| 60 | def getValues(self, context): |
---|
| 61 | catalog = getUtility(ICatalog, name='certificates_catalog') |
---|
| 62 | resultset = catalog.searchResults(code=(None, None)) |
---|
| 63 | resultlist = sorted(resultset, key=lambda |
---|
| 64 | value: value.__parent__.__parent__.__parent__.code + |
---|
| 65 | value.__parent__.__parent__.code + |
---|
| 66 | value.code) |
---|
| 67 | return resultlist |
---|
[13814] | 68 | |
---|
[16152] | 69 | def getTitle(self, context, value): |
---|
| 70 | """ |
---|
| 71 | """ |
---|
| 72 | try: title = "%s / %s / %s (%s)" % ( |
---|
| 73 | value.__parent__.__parent__.__parent__.title, |
---|
| 74 | value.__parent__.__parent__.title, |
---|
| 75 | value.title, value.code) |
---|
| 76 | except AttributeError: |
---|
| 77 | title = "NA / %s (%s)" % (value.title, value.code) |
---|
| 78 | return title |
---|
| 79 | |
---|
[13814] | 80 | REGISTRATION_CATS = { |
---|
| 81 | 'corporate': ('Corporate Registration', 250000, 1), |
---|
| 82 | 'group': ('Group Registration', 200000, 2), |
---|
| 83 | 'individual': ('Individual Registration', 45000, 3), |
---|
| 84 | 'student': ('Student Registration', 5000, 4), |
---|
[13824] | 85 | 'fullpage': ('Full Page Advert', 250000, 5), |
---|
| 86 | 'halfpage': ('Half Page Advert', 150000, 6), |
---|
| 87 | 'quarterpage': ('Quarter Page Advert', 100000, 7), |
---|
[13814] | 88 | } |
---|
| 89 | |
---|
| 90 | class RegTypesSource(BasicSourceFactory): |
---|
| 91 | """A source that delivers all kinds of registrations. |
---|
| 92 | """ |
---|
| 93 | def getValues(self): |
---|
| 94 | sorted_items = sorted(REGISTRATION_CATS.items(), |
---|
| 95 | key=lambda element: element[1][2]) |
---|
| 96 | return [item[0] for item in sorted_items] |
---|
| 97 | |
---|
| 98 | def getTitle(self, value): |
---|
| 99 | return u"%s @ ₦ %s" % ( |
---|
| 100 | REGISTRATION_CATS[value][0], |
---|
| 101 | REGISTRATION_CATS[value][1]) |
---|
| 102 | |
---|
[16131] | 103 | DESTINATION_COST = { |
---|
[16144] | 104 | #'none': ('To the moon', 1000000000.0, 1), |
---|
| 105 | 'nigeria': ('Within Nigeria', 20000.0, 1), |
---|
| 106 | 'africa': ('Within Africa ', 30000.0, 2), |
---|
| 107 | 'inter': ('International', 35000.0, 3), |
---|
[16131] | 108 | } |
---|
| 109 | |
---|
| 110 | class DestinationCostSource(BasicSourceFactory): |
---|
| 111 | """A source that delivers continents and shipment costs. |
---|
| 112 | """ |
---|
| 113 | def getValues(self): |
---|
| 114 | sorted_items = sorted(DESTINATION_COST.items(), |
---|
| 115 | key=lambda element: element[1][2]) |
---|
| 116 | return [item[0] for item in sorted_items] |
---|
| 117 | |
---|
[16151] | 118 | def getToken(self, value): |
---|
| 119 | return value |
---|
| 120 | |
---|
[16131] | 121 | def getTitle(self, value): |
---|
| 122 | return u"%s (₦ %s)" % ( |
---|
| 123 | DESTINATION_COST[value][0], |
---|
| 124 | DESTINATION_COST[value][1]) |
---|
| 125 | |
---|
[16151] | 126 | class OrderSource(BasicSourceFactory): |
---|
| 127 | """ |
---|
| 128 | """ |
---|
| 129 | def getValues(self): |
---|
| 130 | return ['o', 'c'] |
---|
| 131 | |
---|
| 132 | def getToken(self, value): |
---|
| 133 | return value |
---|
| 134 | |
---|
| 135 | def getTitle(self, value): |
---|
| 136 | if value == 'o': |
---|
| 137 | return _('Original') |
---|
| 138 | if value == 'c': |
---|
| 139 | return _('Certified True Copy') |
---|
| 140 | |
---|
[13814] | 141 | class IUnibenRegistration(IKofaObject): |
---|
| 142 | """A Uniben registrant. |
---|
| 143 | """ |
---|
| 144 | |
---|
| 145 | suspended = schema.Bool( |
---|
| 146 | title = _(u'Account suspended'), |
---|
| 147 | default = False, |
---|
| 148 | required = False, |
---|
| 149 | ) |
---|
| 150 | |
---|
| 151 | locked = schema.Bool( |
---|
| 152 | title = _(u'Form locked'), |
---|
| 153 | default = False, |
---|
| 154 | required = False, |
---|
| 155 | ) |
---|
| 156 | |
---|
| 157 | applicant_id = schema.TextLine( |
---|
| 158 | title = _(u'Registrant Id'), |
---|
| 159 | required = False, |
---|
| 160 | readonly = False, |
---|
| 161 | ) |
---|
| 162 | |
---|
| 163 | firstname = schema.TextLine( |
---|
| 164 | title = _(u'First Name'), |
---|
| 165 | required = True, |
---|
| 166 | ) |
---|
| 167 | |
---|
| 168 | middlename = schema.TextLine( |
---|
| 169 | title = _(u'Middle Name'), |
---|
| 170 | required = False, |
---|
| 171 | ) |
---|
| 172 | |
---|
| 173 | lastname = schema.TextLine( |
---|
| 174 | title = _(u'Last Name (Surname)'), |
---|
| 175 | required = True, |
---|
| 176 | ) |
---|
| 177 | |
---|
[13819] | 178 | sex = schema.Choice( |
---|
| 179 | title = _(u'Sex'), |
---|
| 180 | source = GenderSource(), |
---|
| 181 | required = True, |
---|
[13814] | 182 | ) |
---|
| 183 | |
---|
| 184 | nationality = schema.Choice( |
---|
| 185 | vocabulary = nats_vocab, |
---|
| 186 | title = _(u'Nationality'), |
---|
| 187 | required = False, |
---|
| 188 | ) |
---|
| 189 | |
---|
| 190 | email = schema.ASCIILine( |
---|
| 191 | title = _(u'Email Address'), |
---|
| 192 | required = True, |
---|
| 193 | constraint=validate_email, |
---|
| 194 | ) |
---|
| 195 | |
---|
| 196 | phone = PhoneNumber( |
---|
| 197 | title = _(u'Phone'), |
---|
| 198 | description = u'', |
---|
| 199 | required = False, |
---|
| 200 | ) |
---|
| 201 | |
---|
[13819] | 202 | #perm_address = schema.Text( |
---|
| 203 | # title = _(u'Current Local Address'), |
---|
| 204 | # required = False, |
---|
| 205 | # readonly = False, |
---|
| 206 | # ) |
---|
| 207 | |
---|
| 208 | institution = schema.TextLine( |
---|
| 209 | title = _(u'Institution/Organisation'), |
---|
[13814] | 210 | required = False, |
---|
| 211 | readonly = False, |
---|
| 212 | ) |
---|
| 213 | |
---|
[13828] | 214 | city = schema.TextLine( |
---|
| 215 | title = _(u'City'), |
---|
| 216 | required = False, |
---|
| 217 | readonly = False, |
---|
| 218 | ) |
---|
| 219 | |
---|
[13819] | 220 | lga = schema.Choice( |
---|
| 221 | source = LGASource(), |
---|
| 222 | title = _(u'State/LGA'), |
---|
| 223 | required = False, |
---|
| 224 | ) |
---|
| 225 | |
---|
[13831] | 226 | matric_number = schema.TextLine( |
---|
| 227 | title = _(u'Uniben Matriculation Number'), |
---|
| 228 | required = False, |
---|
| 229 | readonly = False, |
---|
| 230 | ) |
---|
| 231 | |
---|
[13814] | 232 | registration_cats = schema.List( |
---|
| 233 | title = _(u'Registration Categories'), |
---|
| 234 | value_type = schema.Choice(source=RegTypesSource()), |
---|
| 235 | required = True, |
---|
[14020] | 236 | defaultFactory=list, |
---|
[13814] | 237 | ) |
---|
| 238 | |
---|
[13831] | 239 | # @invariant |
---|
| 240 | # def matric_number_exists(applicant): |
---|
| 241 | # if applicant.matric_number: |
---|
| 242 | # catalog = getUtility(ICatalog, name='students_catalog') |
---|
| 243 | # accommodation_session = getSite()['hostels'].accommodation_session |
---|
| 244 | # student = catalog.searchResults(matric_number=( |
---|
| 245 | # applicant.matric_number, applicant.matric_number)) |
---|
| 246 | # if len(student) != 1: |
---|
| 247 | # raise Invalid(_("Matriculation number not found.")) |
---|
[13814] | 248 | |
---|
[16078] | 249 | class ITranscriptApplicant(IKofaObject): |
---|
| 250 | """A transcript applicant. |
---|
| 251 | """ |
---|
| 252 | |
---|
| 253 | suspended = schema.Bool( |
---|
| 254 | title = _(u'Account suspended'), |
---|
| 255 | default = False, |
---|
| 256 | required = False, |
---|
| 257 | ) |
---|
| 258 | |
---|
| 259 | locked = schema.Bool( |
---|
| 260 | title = _(u'Form locked'), |
---|
| 261 | default = False, |
---|
| 262 | required = False, |
---|
| 263 | ) |
---|
| 264 | |
---|
| 265 | applicant_id = schema.TextLine( |
---|
[16131] | 266 | title = _(u'Transcript Application Id'), |
---|
[16078] | 267 | required = False, |
---|
| 268 | readonly = False, |
---|
| 269 | ) |
---|
| 270 | |
---|
[16131] | 271 | student_id = schema.TextLine( |
---|
| 272 | title = _(u'Kofa Student Id'), |
---|
| 273 | required = False, |
---|
[16078] | 274 | readonly = False, |
---|
[16131] | 275 | ) |
---|
| 276 | |
---|
| 277 | matric_number = schema.TextLine( |
---|
| 278 | title = _(u'Matriculation Number'), |
---|
| 279 | readonly = False, |
---|
[16078] | 280 | required = True, |
---|
| 281 | ) |
---|
| 282 | |
---|
| 283 | firstname = schema.TextLine( |
---|
[16151] | 284 | title = _(u'First Name in School'), |
---|
[16078] | 285 | required = True, |
---|
| 286 | ) |
---|
| 287 | |
---|
| 288 | middlename = schema.TextLine( |
---|
[16151] | 289 | title = _(u'Middle Name in School'), |
---|
[16078] | 290 | required = False, |
---|
| 291 | ) |
---|
| 292 | |
---|
| 293 | lastname = schema.TextLine( |
---|
[16151] | 294 | title = _(u'Surname in School'), |
---|
[16078] | 295 | required = True, |
---|
| 296 | ) |
---|
| 297 | |
---|
| 298 | date_of_birth = FormattedDate( |
---|
| 299 | title = _(u'Date of Birth'), |
---|
| 300 | required = False, |
---|
| 301 | #date_format = u'%d/%m/%Y', # Use grok-instance-wide default |
---|
| 302 | show_year = True, |
---|
| 303 | ) |
---|
| 304 | |
---|
| 305 | sex = schema.Choice( |
---|
| 306 | title = _(u'Gender'), |
---|
| 307 | source = GenderSource(), |
---|
| 308 | required = True, |
---|
| 309 | ) |
---|
| 310 | |
---|
[16151] | 311 | #nationality = schema.Choice( |
---|
| 312 | # vocabulary = nats_vocab, |
---|
| 313 | # title = _(u'Nationality'), |
---|
| 314 | # required = False, |
---|
| 315 | # ) |
---|
[16078] | 316 | |
---|
| 317 | email = schema.ASCIILine( |
---|
| 318 | title = _(u'Email Address'), |
---|
| 319 | required = True, |
---|
| 320 | constraint=validate_email, |
---|
| 321 | ) |
---|
| 322 | |
---|
| 323 | phone = PhoneNumber( |
---|
| 324 | title = _(u'Phone'), |
---|
| 325 | description = u'', |
---|
| 326 | required = False, |
---|
| 327 | ) |
---|
| 328 | |
---|
[16151] | 329 | #perm_address = schema.Text( |
---|
| 330 | # title = _(u'Current Local Address'), |
---|
| 331 | # required = False, |
---|
| 332 | # readonly = False, |
---|
| 333 | # ) |
---|
| 334 | |
---|
[16153] | 335 | collected = schema.Bool( |
---|
| 336 | title = _(u'Have you collected transcript before?'), |
---|
| 337 | default = False, |
---|
| 338 | required = False, |
---|
| 339 | ) |
---|
| 340 | |
---|
[16151] | 341 | entry_session = schema.Choice( |
---|
| 342 | title = _(u'Academic Session of Entry'), |
---|
| 343 | source = academic_sessions_vocab, |
---|
[16078] | 344 | required = False, |
---|
| 345 | readonly = False, |
---|
| 346 | ) |
---|
| 347 | |
---|
[16151] | 348 | end_session = schema.Choice( |
---|
| 349 | title = _(u'Academic Session of Graduation'), |
---|
| 350 | source = academic_sessions_vocab, |
---|
[16078] | 351 | required = False, |
---|
| 352 | readonly = False, |
---|
| 353 | ) |
---|
| 354 | |
---|
| 355 | entry_mode = schema.Choice( |
---|
[16151] | 356 | title = _(u'Mode of Entry'), |
---|
[16078] | 357 | source = StudyModeSource(), |
---|
| 358 | required = False, |
---|
| 359 | readonly = False, |
---|
| 360 | ) |
---|
| 361 | |
---|
| 362 | course_studied = schema.Choice( |
---|
[16151] | 363 | title = _(u'Course of Study'), |
---|
[16152] | 364 | source = TranscriptCertificateSource(), |
---|
| 365 | description = u'Faculty / Department / Study Course', |
---|
[16078] | 366 | required = False, |
---|
| 367 | readonly = False, |
---|
| 368 | ) |
---|
| 369 | |
---|
| 370 | course_changed = schema.Choice( |
---|
[16151] | 371 | title = _(u'Change of Study Course / Transfer'), |
---|
[16078] | 372 | description = u'If yes, select previous course of study.', |
---|
[16152] | 373 | source = TranscriptCertificateSource(), |
---|
[16078] | 374 | readonly = False, |
---|
| 375 | required = False, |
---|
| 376 | ) |
---|
| 377 | |
---|
[16153] | 378 | spillover_level = schema.Choice( |
---|
| 379 | title = _(u'Spill-over'), |
---|
| 380 | description = u'Any spill-over? If yes, select session of spill-over.', |
---|
| 381 | source = academic_sessions_vocab, |
---|
| 382 | required = False, |
---|
| 383 | readonly = False, |
---|
| 384 | ) |
---|
[16151] | 385 | |
---|
| 386 | purpose = schema.TextLine( |
---|
| 387 | title = _(u'Transcript Purpose'), |
---|
[16078] | 388 | required = False, |
---|
[16151] | 389 | ) |
---|
| 390 | |
---|
| 391 | order = schema.Choice( |
---|
| 392 | source = OrderSource(), |
---|
| 393 | title = _(u'Type of Order'), |
---|
| 394 | required = False, |
---|
| 395 | ) |
---|
| 396 | |
---|
| 397 | dispatch_address = schema.Text( |
---|
| 398 | title = _(u'Recipient Body'), |
---|
| 399 | description = u'Addresses (including email address and phone number) ' |
---|
| 400 | 'to which transcripts should be posted. ' |
---|
| 401 | 'All addresses must involve same courier charges.', |
---|
| 402 | required = False, |
---|
[16078] | 403 | readonly = False, |
---|
| 404 | ) |
---|
| 405 | |
---|
[16151] | 406 | charge = schema.Choice( |
---|
| 407 | title = _(u'Courier Charge'), |
---|
| 408 | source = DestinationCostSource(), |
---|
| 409 | required = True, |
---|
| 410 | ) |
---|
| 411 | |
---|
[16078] | 412 | no_copies = schema.Choice( |
---|
| 413 | title = _(u'Number of Copies'), |
---|
| 414 | description = u'Must correspond with the number of dispatch addresses above.', |
---|
| 415 | values=[1, 2, 3, 4], |
---|
| 416 | required = False, |
---|
| 417 | readonly = False, |
---|
| 418 | default = 1, |
---|
| 419 | ) |
---|
| 420 | |
---|
[14140] | 421 | class ICustomUGApplicant(IApplicantBaseData, IBankAccount): |
---|
[8012] | 422 | """An undergraduate applicant. |
---|
| 423 | |
---|
[8519] | 424 | This interface defines the least common multiple of all fields |
---|
| 425 | in ug application forms. In customized forms, fields can be excluded by |
---|
| 426 | adding them to the UG_OMIT* tuples. |
---|
[8012] | 427 | """ |
---|
| 428 | |
---|
[15490] | 429 | disabilities = schema.Choice( |
---|
| 430 | title = _(u'Disabilities'), |
---|
| 431 | source = DisabilitiesSource(), |
---|
| 432 | required = False, |
---|
| 433 | ) |
---|
[14140] | 434 | nationality = schema.Choice( |
---|
| 435 | source = nats_vocab, |
---|
| 436 | title = _(u'Nationality'), |
---|
| 437 | required = False, |
---|
| 438 | ) |
---|
| 439 | lga = schema.Choice( |
---|
| 440 | source = LGASource(), |
---|
| 441 | title = _(u'State/LGA (Nigerians only)'), |
---|
| 442 | required = False, |
---|
| 443 | ) |
---|
| 444 | #perm_address = schema.Text( |
---|
| 445 | # title = _(u'Permanent Address'), |
---|
| 446 | # required = False, |
---|
| 447 | # ) |
---|
| 448 | course1 = schema.Choice( |
---|
| 449 | title = _(u'1st Choice Course of Study'), |
---|
| 450 | source = AppCatCertificateSource(), |
---|
| 451 | required = True, |
---|
| 452 | ) |
---|
| 453 | course2 = schema.Choice( |
---|
| 454 | title = _(u'2nd Choice Course of Study'), |
---|
| 455 | source = AppCatCertificateSource(), |
---|
| 456 | required = False, |
---|
| 457 | ) |
---|
| 458 | |
---|
| 459 | programme_type = schema.Choice( |
---|
| 460 | title = _(u'Programme Type'), |
---|
| 461 | vocabulary = programme_types_vocab, |
---|
| 462 | required = False, |
---|
| 463 | ) |
---|
| 464 | |
---|
| 465 | hq_type = schema.Choice( |
---|
| 466 | title = _(u'Qualification Obtained'), |
---|
| 467 | required = False, |
---|
| 468 | readonly = False, |
---|
| 469 | vocabulary = high_qual, |
---|
| 470 | ) |
---|
| 471 | hq_matric_no = schema.TextLine( |
---|
| 472 | title = _(u'Former Matric Number'), |
---|
| 473 | required = False, |
---|
| 474 | readonly = False, |
---|
| 475 | ) |
---|
| 476 | hq_degree = schema.Choice( |
---|
| 477 | title = _(u'Class of Degree'), |
---|
| 478 | required = False, |
---|
| 479 | readonly = False, |
---|
| 480 | vocabulary = high_grade, |
---|
| 481 | ) |
---|
| 482 | hq_school = schema.TextLine( |
---|
| 483 | title = _(u'Institution Attended'), |
---|
| 484 | required = False, |
---|
| 485 | readonly = False, |
---|
| 486 | ) |
---|
| 487 | hq_session = schema.TextLine( |
---|
| 488 | title = _(u'Years Attended'), |
---|
| 489 | required = False, |
---|
| 490 | readonly = False, |
---|
| 491 | ) |
---|
| 492 | hq_disc = schema.TextLine( |
---|
| 493 | title = _(u'Discipline'), |
---|
| 494 | required = False, |
---|
| 495 | readonly = False, |
---|
| 496 | ) |
---|
[14141] | 497 | fst_sit_fname = schema.TextLine( |
---|
| 498 | title = _(u'Full Name'), |
---|
| 499 | required = False, |
---|
| 500 | readonly = False, |
---|
| 501 | ) |
---|
| 502 | fst_sit_no = schema.TextLine( |
---|
| 503 | title = _(u'Exam Number'), |
---|
| 504 | required = False, |
---|
| 505 | readonly = False, |
---|
| 506 | ) |
---|
| 507 | fst_sit_date = FormattedDate( |
---|
| 508 | title = _(u'Exam Date'), |
---|
| 509 | required = False, |
---|
| 510 | readonly = False, |
---|
| 511 | show_year = True, |
---|
| 512 | ) |
---|
| 513 | fst_sit_type = schema.Choice( |
---|
| 514 | title = _(u'Exam Type'), |
---|
| 515 | required = False, |
---|
| 516 | readonly = False, |
---|
| 517 | vocabulary = exam_types, |
---|
| 518 | ) |
---|
| 519 | fst_sit_results = schema.List( |
---|
| 520 | title = _(u'Exam Results'), |
---|
| 521 | value_type = ResultEntryField(), |
---|
| 522 | required = False, |
---|
| 523 | readonly = False, |
---|
| 524 | defaultFactory=list, |
---|
| 525 | ) |
---|
| 526 | scd_sit_fname = schema.TextLine( |
---|
| 527 | title = _(u'Full Name'), |
---|
| 528 | required = False, |
---|
| 529 | readonly = False, |
---|
| 530 | ) |
---|
| 531 | scd_sit_no = schema.TextLine( |
---|
| 532 | title = _(u'Exam Number'), |
---|
| 533 | required = False, |
---|
| 534 | readonly = False, |
---|
| 535 | ) |
---|
| 536 | scd_sit_date = FormattedDate( |
---|
| 537 | title = _(u'Exam Date'), |
---|
| 538 | required = False, |
---|
| 539 | readonly = False, |
---|
| 540 | show_year = True, |
---|
| 541 | ) |
---|
| 542 | scd_sit_type = schema.Choice( |
---|
| 543 | title = _(u'Exam Type'), |
---|
| 544 | required = False, |
---|
| 545 | readonly = False, |
---|
| 546 | vocabulary = exam_types, |
---|
| 547 | ) |
---|
| 548 | scd_sit_results = schema.List( |
---|
| 549 | title = _(u'Exam Results'), |
---|
| 550 | value_type = ResultEntryField(), |
---|
| 551 | required = False, |
---|
| 552 | readonly = False, |
---|
| 553 | defaultFactory=list, |
---|
| 554 | ) |
---|
[14140] | 555 | jamb_subjects = schema.Text( |
---|
| 556 | title = _(u'Subjects and Scores'), |
---|
| 557 | required = False, |
---|
| 558 | ) |
---|
| 559 | jamb_subjects_list = schema.List( |
---|
| 560 | title = _(u'JAMB Subjects'), |
---|
| 561 | required = False, |
---|
| 562 | defaultFactory=list, |
---|
| 563 | value_type = schema.Choice( |
---|
| 564 | vocabulary = jambsubjects |
---|
| 565 | #source = JAMBSubjectSource(), |
---|
| 566 | ), |
---|
| 567 | ) |
---|
| 568 | jamb_score = schema.Int( |
---|
| 569 | title = _(u'Total JAMB Score'), |
---|
| 570 | required = False, |
---|
| 571 | ) |
---|
| 572 | #jamb_age = schema.Int( |
---|
| 573 | # title = _(u'Age (provided by JAMB)'), |
---|
| 574 | # required = False, |
---|
| 575 | # ) |
---|
| 576 | jamb_reg_number = schema.TextLine( |
---|
| 577 | title = _(u'JAMB Registration Number'), |
---|
| 578 | required = False, |
---|
| 579 | ) |
---|
| 580 | notice = schema.Text( |
---|
| 581 | title = _(u'Notice'), |
---|
| 582 | required = False, |
---|
| 583 | ) |
---|
| 584 | screening_venue = schema.TextLine( |
---|
| 585 | title = _(u'Screening Venue'), |
---|
| 586 | required = False, |
---|
| 587 | ) |
---|
| 588 | screening_date = schema.TextLine( |
---|
| 589 | title = _(u'Screening Date'), |
---|
| 590 | required = False, |
---|
| 591 | ) |
---|
| 592 | screening_score = schema.Int( |
---|
| 593 | title = _(u'Screening Score (%)'), |
---|
| 594 | required = False, |
---|
| 595 | ) |
---|
| 596 | aggregate = schema.Int( |
---|
| 597 | title = _(u'Aggregate Score (%)'), |
---|
| 598 | description = _(u'(average of relative JAMB and PUTME scores)'), |
---|
| 599 | required = False, |
---|
| 600 | ) |
---|
| 601 | result_uploaded = schema.Bool( |
---|
| 602 | title = _(u'Result uploaded'), |
---|
| 603 | default = False, |
---|
| 604 | required = False, |
---|
| 605 | ) |
---|
| 606 | student_id = schema.TextLine( |
---|
| 607 | title = _(u'Student Id'), |
---|
| 608 | required = False, |
---|
| 609 | readonly = False, |
---|
| 610 | ) |
---|
| 611 | course_admitted = schema.Choice( |
---|
| 612 | title = _(u'Admitted Course of Study'), |
---|
| 613 | source = CertificateSource(), |
---|
| 614 | required = False, |
---|
| 615 | ) |
---|
| 616 | locked = schema.Bool( |
---|
| 617 | title = _(u'Form locked'), |
---|
| 618 | default = False, |
---|
| 619 | required = False, |
---|
| 620 | ) |
---|
| 621 | |
---|
| 622 | ICustomUGApplicant[ |
---|
| 623 | 'locked'].order = IApplicantBaseData['suspended'].order |
---|
| 624 | ICustomUGApplicant[ |
---|
| 625 | 'result_uploaded'].order = ICustomUGApplicant['suspended'].order |
---|
| 626 | |
---|
[8928] | 627 | class ICustomPGApplicant(INigeriaPGApplicant): |
---|
[7853] | 628 | """A postgraduate applicant. |
---|
| 629 | |
---|
[8519] | 630 | This interface defines the least common multiple of all fields |
---|
| 631 | in pg application forms. In customized forms, fields can be excluded by |
---|
| 632 | adding them to the PG_OMIT* tuples. |
---|
[7866] | 633 | """ |
---|
| 634 | |
---|
[14106] | 635 | referees = schema.List( |
---|
| 636 | title = _(u'Referees'), |
---|
| 637 | value_type = RefereeEntryField(), |
---|
| 638 | required = False, |
---|
| 639 | defaultFactory=list, |
---|
| 640 | ) |
---|
[8012] | 641 | |
---|
[14106] | 642 | ICustomPGApplicant[ |
---|
| 643 | 'referees'].order = INigeriaPGApplicant['emp2_reason'].order |
---|
| 644 | |
---|
[13814] | 645 | class ICustomApplicant(ICustomUGApplicant, ICustomPGApplicant, |
---|
[16078] | 646 | IUnibenRegistration, ITranscriptApplicant): |
---|
[8012] | 647 | """An interface for both types of applicants. |
---|
| 648 | |
---|
[8928] | 649 | Attention: The ICustomPGApplicant field seetings will be overwritten |
---|
| 650 | by ICustomPGApplicant field settings. If a field is defined |
---|
[8727] | 651 | in both interfaces zope.schema validates only against the |
---|
[8928] | 652 | constraints in ICustomUGApplicant. This does not affect the forms |
---|
| 653 | since they are build on either ICustomUGApplicant or ICustomPGApplicant. |
---|
[8012] | 654 | """ |
---|
| 655 | |
---|
[8743] | 656 | def writeLogMessage(view, comment): |
---|
[8053] | 657 | """Adds an INFO message to the log file |
---|
| 658 | """ |
---|
| 659 | |
---|
| 660 | def createStudent(): |
---|
[8668] | 661 | """Create a student object from applicant data |
---|
[8053] | 662 | and copy applicant object. |
---|
| 663 | """ |
---|
| 664 | |
---|
[14212] | 665 | class ICustomUGApplicantEdit(ICustomUGApplicant): |
---|
[8727] | 666 | """An undergraduate applicant interface for edit forms. |
---|
[8012] | 667 | |
---|
| 668 | Here we can repeat the fields from base data and set the |
---|
| 669 | `required` and `readonly` attributes to True to further restrict |
---|
| 670 | the data access. Or we can allow only certain certificates to be |
---|
| 671 | selected by choosing the appropriate source. |
---|
| 672 | |
---|
| 673 | We cannot omit fields here. This has to be done in the |
---|
| 674 | respective form page. |
---|
| 675 | """ |
---|
| 676 | |
---|
[14212] | 677 | email = schema.ASCIILine( |
---|
| 678 | title = _(u'Email Address'), |
---|
| 679 | required = True, |
---|
| 680 | constraint=validate_email, |
---|
| 681 | ) |
---|
| 682 | date_of_birth = FormattedDate( |
---|
| 683 | title = _(u'Date of Birth'), |
---|
| 684 | required = True, |
---|
| 685 | show_year = True, |
---|
| 686 | ) |
---|
| 687 | |
---|
| 688 | ICustomUGApplicantEdit[ |
---|
| 689 | 'date_of_birth'].order = ICustomUGApplicant['date_of_birth'].order |
---|
| 690 | ICustomUGApplicantEdit[ |
---|
| 691 | 'email'].order = ICustomUGApplicant['email'].order |
---|
| 692 | |
---|
[9056] | 693 | class ICustomPGApplicantEdit(INigeriaPGApplicantEdit): |
---|
[7866] | 694 | """A postgraduate applicant interface for editing. |
---|
| 695 | |
---|
| 696 | Here we can repeat the fields from base data and set the |
---|
| 697 | `required` and `readonly` attributes to True to further restrict |
---|
| 698 | the data access. Or we can allow only certain certificates to be |
---|
| 699 | selected by choosing the appropriate source. |
---|
| 700 | |
---|
| 701 | We cannot omit fields here. This has to be done in the |
---|
| 702 | respective form page. |
---|
[8017] | 703 | """ |
---|
[8454] | 704 | |
---|
[14106] | 705 | referees = schema.List( |
---|
| 706 | title = _(u'Referees'), |
---|
| 707 | value_type = RefereeEntryField(), |
---|
| 708 | required = False, |
---|
| 709 | defaultFactory=list, |
---|
| 710 | ) |
---|
[13814] | 711 | |
---|
[14106] | 712 | ICustomPGApplicantEdit[ |
---|
| 713 | 'referees'].order = INigeriaPGApplicantEdit['emp2_reason'].order |
---|
| 714 | |
---|
[8928] | 715 | class ICustomApplicantOnlinePayment(INigeriaApplicantOnlinePayment): |
---|
[8247] | 716 | """An applicant payment via payment gateways. |
---|
| 717 | |
---|
| 718 | """ |
---|
[8530] | 719 | |
---|
[14153] | 720 | class IPUTMEApplicantEdit(ICustomUGApplicant): |
---|
[8530] | 721 | """An undergraduate applicant interface for editing. |
---|
| 722 | |
---|
| 723 | Here we can repeat the fields from base data and set the |
---|
| 724 | `required` and `readonly` attributes to True to further restrict |
---|
| 725 | the data access. Or we can allow only certain certificates to be |
---|
| 726 | selected by choosing the appropriate source. |
---|
| 727 | |
---|
| 728 | We cannot omit fields here. This has to be done in the |
---|
| 729 | respective form page. |
---|
| 730 | """ |
---|
| 731 | |
---|
[14153] | 732 | email = schema.ASCIILine( |
---|
| 733 | title = _(u'Email Address'), |
---|
| 734 | required = True, |
---|
| 735 | constraint=validate_email, |
---|
| 736 | ) |
---|
| 737 | date_of_birth = FormattedDate( |
---|
| 738 | title = _(u'Date of Birth'), |
---|
| 739 | required = True, |
---|
| 740 | show_year = True, |
---|
| 741 | ) |
---|
| 742 | nationality = schema.Choice( |
---|
| 743 | source = nats_vocab, |
---|
| 744 | title = _(u'Nationality'), |
---|
| 745 | required = True, |
---|
| 746 | ) |
---|
| 747 | |
---|
| 748 | IPUTMEApplicantEdit[ |
---|
| 749 | 'date_of_birth'].order = ICustomUGApplicant['date_of_birth'].order |
---|
| 750 | IPUTMEApplicantEdit[ |
---|
| 751 | 'email'].order = ICustomUGApplicant['email'].order |
---|
| 752 | IPUTMEApplicantEdit[ |
---|
| 753 | 'nationality'].order = ICustomUGApplicant['nationality'].order |
---|
| 754 | |
---|
[9056] | 755 | class ICustomApplicantUpdateByRegNo(INigeriaApplicantUpdateByRegNo): |
---|
[8582] | 756 | """Representation of an applicant. |
---|
| 757 | |
---|
| 758 | Skip regular reg_number validation if reg_number is used for finding |
---|
| 759 | the applicant object. |
---|
| 760 | """ |
---|