[5638] | 1 | ## $Id: interfaces.py 9531 2012-11-04 21:51:57Z henrik $ |
---|
[6076] | 2 | ## |
---|
[6087] | 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
[5638] | 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. |
---|
[6076] | 8 | ## |
---|
[5638] | 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. |
---|
[6076] | 13 | ## |
---|
[5638] | 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 | ## |
---|
[6500] | 18 | """Interfaces of the university application package. |
---|
[5638] | 19 | """ |
---|
[9115] | 20 | from datetime import datetime |
---|
[5866] | 21 | from grokcore.content.interfaces import IContainer |
---|
[7795] | 22 | from zc.sourcefactory.contextual import BasicContextualSourceFactory |
---|
[5638] | 23 | from zope import schema |
---|
[8613] | 24 | from zope.component import queryUtility, getUtility |
---|
[7263] | 25 | from zope.catalog.interfaces import ICatalog |
---|
[7795] | 26 | from zope.interface import Interface, Attribute, implements, directlyProvides |
---|
[7317] | 27 | from zope.schema.interfaces import ( |
---|
| 28 | ValidationError, ISource, IContextSourceBinder) |
---|
[9217] | 29 | from waeup.kofa.browser.interfaces import IApplicantBase |
---|
[8149] | 30 | from waeup.kofa.schema import TextLineChoice, FormattedDate |
---|
[7811] | 31 | from waeup.kofa.interfaces import ( |
---|
[9115] | 32 | IKofaObject, validate_email, |
---|
[8033] | 33 | SimpleKofaVocabulary) |
---|
[7811] | 34 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 35 | from waeup.kofa.payments.interfaces import IOnlinePayment |
---|
[8176] | 36 | from waeup.kofa.schema import PhoneNumber |
---|
[8767] | 37 | from waeup.kofa.students.vocabularies import GenderSource, RegNumberSource |
---|
[8613] | 38 | from waeup.kofa.university.vocabularies import AppCatSource, CertificateSource |
---|
[5638] | 39 | |
---|
[7075] | 40 | #: Maximum upload size for applicant passport photographs (in bytes) |
---|
[7086] | 41 | MAX_UPLOAD_SIZE = 1024 * 20 |
---|
[7075] | 42 | |
---|
[8611] | 43 | _marker = object() # a marker different from None |
---|
| 44 | |
---|
[9115] | 45 | def year_range(): |
---|
| 46 | curr_year = datetime.now().year |
---|
| 47 | return range(curr_year - 2, curr_year + 5) |
---|
| 48 | |
---|
[7263] | 49 | class RegNumInSource(ValidationError): |
---|
| 50 | """Registration number exists already |
---|
| 51 | """ |
---|
| 52 | # The docstring of ValidationErrors is used as error description |
---|
| 53 | # by zope.formlib. |
---|
| 54 | pass |
---|
| 55 | |
---|
[8767] | 56 | class ApplicantRegNumberSource(RegNumberSource): |
---|
| 57 | """A source that accepts any reg number if not used already by a |
---|
| 58 | different applicant. |
---|
| 59 | """ |
---|
[7263] | 60 | cat_name = 'applicants_catalog' |
---|
[7270] | 61 | field_name = 'reg_number' |
---|
[7263] | 62 | validation_error = RegNumInSource |
---|
[8767] | 63 | comp_field = 'applicant_id' |
---|
[7263] | 64 | |
---|
| 65 | def contextual_reg_num_source(context): |
---|
[8767] | 66 | source = ApplicantRegNumberSource(context) |
---|
[7263] | 67 | return source |
---|
| 68 | directlyProvides(contextual_reg_num_source, IContextSourceBinder) |
---|
| 69 | |
---|
[7795] | 70 | |
---|
[7683] | 71 | class AppCatCertificateSource(CertificateSource): |
---|
[8607] | 72 | """An application certificate source delivers all certificates |
---|
| 73 | which belong to a certain application_category. |
---|
| 74 | |
---|
| 75 | This source is meant to be used with Applicants. |
---|
| 76 | |
---|
| 77 | The application category must match the application category of |
---|
| 78 | the context parent, normally an applicants container. |
---|
[7683] | 79 | """ |
---|
[8607] | 80 | def contains(self, context, value): |
---|
| 81 | context_appcat = getattr(getattr( |
---|
[8611] | 82 | context, '__parent__', None), 'application_category', _marker) |
---|
| 83 | if context_appcat is _marker: |
---|
[8607] | 84 | # If the context (applicant) has no application category, |
---|
| 85 | # then it might be not part of a container (yet), for |
---|
| 86 | # instance during imports. We consider this correct. |
---|
| 87 | return True |
---|
| 88 | if value.application_category == context_appcat: |
---|
| 89 | return True |
---|
| 90 | return False |
---|
| 91 | |
---|
[7683] | 92 | def getValues(self, context): |
---|
| 93 | # appliction category not available when certificate was deleted. |
---|
| 94 | # shouldn't that info be part of applicant info instead? |
---|
| 95 | # when we cannot determine the appcat, we will display all courses. |
---|
| 96 | appcat = getattr(getattr(context, '__parent__', None), |
---|
| 97 | 'application_category', None) |
---|
| 98 | catalog = getUtility(ICatalog, name='certificates_catalog') |
---|
| 99 | result = catalog.searchResults( |
---|
| 100 | application_category=(appcat,appcat)) |
---|
| 101 | result = sorted(result, key=lambda value: value.code) |
---|
[8607] | 102 | # XXX: What does the following mean here? |
---|
[7683] | 103 | curr_course = context.course1 |
---|
| 104 | if curr_course is not None and curr_course not in result: |
---|
| 105 | # display also current course even if it is not catalogued |
---|
| 106 | # (any more) |
---|
| 107 | result = [curr_course,] + result |
---|
| 108 | return result |
---|
| 109 | |
---|
| 110 | class ApplicationTypeSource(BasicContextualSourceFactory): |
---|
| 111 | """An application type source delivers screening types defined in the |
---|
| 112 | portal. |
---|
| 113 | """ |
---|
| 114 | def getValues(self, context): |
---|
[7688] | 115 | appcats_dict = getUtility( |
---|
[7844] | 116 | IApplicantsUtils).APP_TYPES_DICT |
---|
[7688] | 117 | return sorted(appcats_dict.keys()) |
---|
[7683] | 118 | |
---|
| 119 | def getToken(self, context, value): |
---|
| 120 | return value |
---|
| 121 | |
---|
| 122 | def getTitle(self, context, value): |
---|
[7688] | 123 | appcats_dict = getUtility( |
---|
[7844] | 124 | IApplicantsUtils).APP_TYPES_DICT |
---|
[7688] | 125 | return appcats_dict[value][0] |
---|
[7683] | 126 | |
---|
[8773] | 127 | # Maybe FUTMinna still needs this ... |
---|
[7683] | 128 | #class ApplicationPinSource(BasicContextualSourceFactory): |
---|
| 129 | # """An application pin source delivers PIN prefixes for application |
---|
| 130 | # defined in the portal. |
---|
| 131 | # """ |
---|
| 132 | # def getValues(self, context): |
---|
[7688] | 133 | # apppins_dict = getUtility( |
---|
[7844] | 134 | # IApplicantsUtils).APP_TYPES_DICT |
---|
[7688] | 135 | # return sorted(appcats_dict.keys()) |
---|
[7683] | 136 | # |
---|
| 137 | # def getToken(self, context, value): |
---|
| 138 | # return value |
---|
| 139 | # |
---|
| 140 | # def getTitle(self, context, value): |
---|
[7688] | 141 | # apppins_dict = getUtility( |
---|
[7844] | 142 | # IApplicantsUtils).APP_TYPES_DICT |
---|
[7683] | 143 | # return u"%s (%s)" % ( |
---|
[7688] | 144 | # apppins_dict[value][1],self.apppins_dict[value][0]) |
---|
[7683] | 145 | |
---|
[8033] | 146 | application_modes_vocab = SimpleKofaVocabulary( |
---|
| 147 | (_('Create Application Records'), 'create'), |
---|
| 148 | (_('Update Application Records'), 'update'), |
---|
| 149 | ) |
---|
[6075] | 150 | |
---|
[7682] | 151 | class IApplicantsUtils(Interface): |
---|
| 152 | """A collection of methods which are subject to customization. |
---|
| 153 | """ |
---|
| 154 | |
---|
[7844] | 155 | APP_TYPES_DICT = Attribute(' dict of application types') |
---|
| 156 | |
---|
[7819] | 157 | class IApplicantsRoot(IKofaObject, IContainer): |
---|
[5676] | 158 | """A container for university applicants containers. |
---|
[5645] | 159 | """ |
---|
[5638] | 160 | |
---|
[8388] | 161 | description = schema.Text( |
---|
| 162 | title = _(u'Human readable description in HTML format'), |
---|
| 163 | required = False, |
---|
| 164 | default = u'''This text can been seen by anonymous users. |
---|
| 165 | Here we put multi-lingual general information about the application procedure. |
---|
| 166 | >>de<< |
---|
| 167 | Dieser Text kann von anonymen Benutzern gelesen werden. |
---|
| 168 | Hier koennen mehrsprachige Informationen fuer Antragsteller hinterlegt werden.''' |
---|
| 169 | ) |
---|
| 170 | |
---|
| 171 | description_dict = Attribute( |
---|
| 172 | """Content as language dictionary with values in HTML format.""") |
---|
| 173 | |
---|
[7819] | 174 | class IApplicantsContainer(IKofaObject): |
---|
[5676] | 175 | """An applicants container contains university applicants. |
---|
[5645] | 176 | |
---|
[5638] | 177 | """ |
---|
[6069] | 178 | |
---|
| 179 | code = schema.TextLine( |
---|
[7708] | 180 | title = _(u'Code'), |
---|
[6069] | 181 | required = True, |
---|
| 182 | readonly = True, |
---|
[6076] | 183 | ) |
---|
[6096] | 184 | |
---|
[6087] | 185 | title = schema.TextLine( |
---|
[7708] | 186 | title = _(u'Title'), |
---|
[6087] | 187 | required = True, |
---|
[8562] | 188 | readonly = False, |
---|
[6096] | 189 | ) |
---|
| 190 | |
---|
[6087] | 191 | prefix = schema.Choice( |
---|
[7708] | 192 | title = _(u'Application Target'), |
---|
[6087] | 193 | required = True, |
---|
[7683] | 194 | source = ApplicationTypeSource(), |
---|
[6087] | 195 | readonly = True, |
---|
| 196 | ) |
---|
[6076] | 197 | |
---|
[6087] | 198 | year = schema.Choice( |
---|
[7708] | 199 | title = _(u'Year of Entrance'), |
---|
[6087] | 200 | required = True, |
---|
[6158] | 201 | values = year_range(), |
---|
[6087] | 202 | readonly = True, |
---|
[6096] | 203 | ) |
---|
[6087] | 204 | |
---|
[8033] | 205 | mode = schema.Choice( |
---|
| 206 | title = _(u'Application Mode'), |
---|
| 207 | vocabulary = application_modes_vocab, |
---|
| 208 | required = True, |
---|
| 209 | ) |
---|
| 210 | |
---|
[8773] | 211 | # Maybe FUTMinna still needs this ... |
---|
[7376] | 212 | #ac_prefix = schema.Choice( |
---|
| 213 | # title = u'Activation code prefix', |
---|
| 214 | # required = True, |
---|
| 215 | # default = None, |
---|
[7683] | 216 | # source = ApplicationPinSource(), |
---|
[7376] | 217 | # ) |
---|
[6076] | 218 | |
---|
[6189] | 219 | application_category = schema.Choice( |
---|
[7708] | 220 | title = _(u'Category for the grouping of certificates'), |
---|
[6189] | 221 | required = True, |
---|
[7681] | 222 | source = AppCatSource(), |
---|
[6189] | 223 | ) |
---|
| 224 | |
---|
[5645] | 225 | description = schema.Text( |
---|
[8365] | 226 | title = _(u'Human readable description in HTML format'), |
---|
[5638] | 227 | required = False, |
---|
[6518] | 228 | default = u'''This text can been seen by anonymous users. |
---|
[8033] | 229 | Here we put multi-lingual information about the study courses provided, the application procedure and deadlines. |
---|
[7708] | 230 | >>de<< |
---|
| 231 | Dieser Text kann von anonymen Benutzern gelesen werden. |
---|
| 232 | Hier koennen mehrsprachige Informationen fuer Antragsteller hinterlegt werden.''' |
---|
[5638] | 233 | ) |
---|
| 234 | |
---|
[7903] | 235 | description_dict = Attribute( |
---|
| 236 | """Content as language dictionary with values in HTML format.""") |
---|
[7708] | 237 | |
---|
[8200] | 238 | startdate = schema.Datetime( |
---|
[7708] | 239 | title = _(u'Application Start Date'), |
---|
[5638] | 240 | required = False, |
---|
[8203] | 241 | description = _('Example:') + u'2011-12-01 18:30:00+01:00', |
---|
[5638] | 242 | ) |
---|
| 243 | |
---|
[8200] | 244 | enddate = schema.Datetime( |
---|
[7708] | 245 | title = _(u'Application Closing Date'), |
---|
[5638] | 246 | required = False, |
---|
[8203] | 247 | description = _('Example:') + u'2011-12-31 23:59:59+01:00', |
---|
[5638] | 248 | ) |
---|
| 249 | |
---|
[5645] | 250 | strict_deadline = schema.Bool( |
---|
[7708] | 251 | title = _(u'Forbid additions after deadline (enddate)'), |
---|
[7984] | 252 | required = False, |
---|
[5645] | 253 | default = True, |
---|
| 254 | ) |
---|
[5638] | 255 | |
---|
[8525] | 256 | application_fee = schema.Float( |
---|
| 257 | title = _(u'Application Fee'), |
---|
| 258 | default = 0.0, |
---|
| 259 | required = False, |
---|
| 260 | ) |
---|
| 261 | |
---|
[5638] | 262 | def archive(id=None): |
---|
[5676] | 263 | """Create on-dist archive of applicants stored in this term. |
---|
[5638] | 264 | |
---|
[5676] | 265 | If id is `None`, all applicants are archived. |
---|
[5638] | 266 | |
---|
| 267 | If id contains a single id string, only the respective |
---|
[5676] | 268 | applicants are archived. |
---|
[5638] | 269 | |
---|
| 270 | If id contains a list of id strings all of the respective |
---|
[5676] | 271 | applicants types are saved to disk. |
---|
[5638] | 272 | """ |
---|
| 273 | |
---|
| 274 | def clear(id=None, archive=True): |
---|
[5676] | 275 | """Remove applicants of type given by 'id'. |
---|
[5638] | 276 | |
---|
[5676] | 277 | Optionally archive the applicants. |
---|
[6076] | 278 | |
---|
[5676] | 279 | If id is `None`, all applicants are archived. |
---|
[5638] | 280 | |
---|
| 281 | If id contains a single id string, only the respective |
---|
[5676] | 282 | applicants are archived. |
---|
[5638] | 283 | |
---|
| 284 | If id contains a list of id strings all of the respective |
---|
[5676] | 285 | applicant types are saved to disk. |
---|
[5638] | 286 | |
---|
| 287 | If `archive` is ``False`` none of the archive-handling is done |
---|
[5676] | 288 | and respective applicants are simply removed from the |
---|
[5638] | 289 | database. |
---|
| 290 | """ |
---|
[6073] | 291 | |
---|
[9531] | 292 | def writeLogMessage(view, comment): |
---|
| 293 | """Adds an INFO message to the log file |
---|
| 294 | """ |
---|
| 295 | |
---|
[6069] | 296 | class IApplicantsContainerAdd(IApplicantsContainer): |
---|
| 297 | """An applicants container contains university applicants. |
---|
| 298 | """ |
---|
[6087] | 299 | prefix = schema.Choice( |
---|
[7708] | 300 | title = _(u'Application Target'), |
---|
[6069] | 301 | required = True, |
---|
[7683] | 302 | source = ApplicationTypeSource(), |
---|
[6069] | 303 | readonly = False, |
---|
[6076] | 304 | ) |
---|
[6073] | 305 | |
---|
[6087] | 306 | year = schema.Choice( |
---|
[7708] | 307 | title = _(u'Year of Entrance'), |
---|
[6087] | 308 | required = True, |
---|
[6158] | 309 | values = year_range(), |
---|
[6087] | 310 | readonly = False, |
---|
[6096] | 311 | ) |
---|
[6073] | 312 | |
---|
[6096] | 313 | IApplicantsContainerAdd[ |
---|
| 314 | 'prefix'].order = IApplicantsContainer['prefix'].order |
---|
| 315 | IApplicantsContainerAdd[ |
---|
| 316 | 'year'].order = IApplicantsContainer['year'].order |
---|
[6087] | 317 | |
---|
[9217] | 318 | class IApplicantBaseData(IApplicantBase): |
---|
[5753] | 319 | """The data for an applicant. |
---|
| 320 | |
---|
[7240] | 321 | This is a base interface with no field |
---|
[7933] | 322 | required. For use with processors, forms, etc., please use one of |
---|
[5753] | 323 | the derived interfaces below, which set more fields to required |
---|
| 324 | state, depending on use-case. |
---|
| 325 | """ |
---|
[8052] | 326 | |
---|
| 327 | history = Attribute('Object history, a list of messages') |
---|
[8286] | 328 | state = Attribute('The application state of an applicant') |
---|
[8052] | 329 | display_fullname = Attribute('The fullname of an applicant') |
---|
[8589] | 330 | application_date = Attribute('UTC datetime of submission, used for export only') |
---|
[8052] | 331 | password = Attribute('Encrypted password of a applicant') |
---|
| 332 | application_number = Attribute('The key under which the record is stored') |
---|
| 333 | |
---|
[8983] | 334 | suspended = schema.Bool( |
---|
| 335 | title = _(u'Account suspended'), |
---|
| 336 | default = False, |
---|
[9035] | 337 | required = False, |
---|
[8983] | 338 | ) |
---|
| 339 | |
---|
[7240] | 340 | applicant_id = schema.TextLine( |
---|
[7708] | 341 | title = _(u'Applicant Id'), |
---|
[7240] | 342 | required = False, |
---|
[7260] | 343 | readonly = False, |
---|
[7240] | 344 | ) |
---|
[7270] | 345 | reg_number = TextLineChoice( |
---|
[8033] | 346 | title = _(u'Registration Number'), |
---|
[7263] | 347 | readonly = False, |
---|
| 348 | required = True, |
---|
| 349 | source = contextual_reg_num_source, |
---|
[5753] | 350 | ) |
---|
[7376] | 351 | #access_code = schema.TextLine( |
---|
| 352 | # title = u'Activation Code', |
---|
| 353 | # required = False, |
---|
| 354 | # readonly = True, |
---|
| 355 | # ) |
---|
[5753] | 356 | firstname = schema.TextLine( |
---|
[7708] | 357 | title = _(u'First Name'), |
---|
[6352] | 358 | required = True, |
---|
[5753] | 359 | ) |
---|
[7356] | 360 | middlename = schema.TextLine( |
---|
[7708] | 361 | title = _(u'Middle Name'), |
---|
[5753] | 362 | required = False, |
---|
| 363 | ) |
---|
| 364 | lastname = schema.TextLine( |
---|
[7708] | 365 | title = _(u'Last Name (Surname)'), |
---|
[6352] | 366 | required = True, |
---|
[5753] | 367 | ) |
---|
[8149] | 368 | date_of_birth = FormattedDate( |
---|
[7708] | 369 | title = _(u'Date of Birth'), |
---|
[8540] | 370 | required = False, |
---|
[8154] | 371 | #date_format = u'%d/%m/%Y', # Use grok-instance-wide default |
---|
[8149] | 372 | show_year = True, |
---|
[5753] | 373 | ) |
---|
| 374 | sex = schema.Choice( |
---|
[7708] | 375 | title = _(u'Sex'), |
---|
[5753] | 376 | source = GenderSource(), |
---|
[6352] | 377 | required = True, |
---|
[5753] | 378 | ) |
---|
[6341] | 379 | email = schema.ASCIILine( |
---|
[7708] | 380 | title = _(u'Email Address'), |
---|
[8033] | 381 | required = False, |
---|
[6343] | 382 | constraint=validate_email, |
---|
[5753] | 383 | ) |
---|
[8176] | 384 | phone = PhoneNumber( |
---|
[7708] | 385 | title = _(u'Phone'), |
---|
[7331] | 386 | description = u'', |
---|
[5753] | 387 | required = False, |
---|
| 388 | ) |
---|
[7262] | 389 | course1 = schema.Choice( |
---|
[7708] | 390 | title = _(u'1st Choice Course of Study'), |
---|
[8518] | 391 | source = AppCatCertificateSource(), |
---|
[7262] | 392 | required = True, |
---|
| 393 | ) |
---|
| 394 | course2 = schema.Choice( |
---|
[7708] | 395 | title = _(u'2nd Choice Course of Study'), |
---|
[8518] | 396 | source = AppCatCertificateSource(), |
---|
[7262] | 397 | required = False, |
---|
| 398 | ) |
---|
[8044] | 399 | #school_grades = schema.List( |
---|
| 400 | # title = _(u'School Grades'), |
---|
| 401 | # value_type = ResultEntryField(), |
---|
| 402 | # required = False, |
---|
| 403 | # default = [], |
---|
| 404 | # ) |
---|
[6322] | 405 | |
---|
[8052] | 406 | notice = schema.Text( |
---|
| 407 | title = _(u'Notice'), |
---|
[5753] | 408 | required = False, |
---|
| 409 | ) |
---|
[8533] | 410 | student_id = schema.TextLine( |
---|
| 411 | title = _(u'Student Id'), |
---|
| 412 | required = False, |
---|
| 413 | readonly = False, |
---|
| 414 | ) |
---|
[6248] | 415 | course_admitted = schema.Choice( |
---|
[7708] | 416 | title = _(u'Admitted Course of Study'), |
---|
[7347] | 417 | source = CertificateSource(), |
---|
[5753] | 418 | required = False, |
---|
| 419 | ) |
---|
[6302] | 420 | locked = schema.Bool( |
---|
[7708] | 421 | title = _(u'Form locked'), |
---|
[6302] | 422 | default = False, |
---|
| 423 | ) |
---|
[5753] | 424 | |
---|
[8052] | 425 | class IApplicant(IApplicantBaseData): |
---|
[5753] | 426 | """An applicant. |
---|
| 427 | |
---|
| 428 | This is basically the applicant base data. Here we repeat the |
---|
[6195] | 429 | fields from base data if we have to set the `required` attribute |
---|
| 430 | to True (which is the default). |
---|
[5753] | 431 | """ |
---|
| 432 | |
---|
[8742] | 433 | def writeLogMessage(view, comment): |
---|
[8052] | 434 | """Adds an INFO message to the log file |
---|
| 435 | """ |
---|
| 436 | |
---|
[8014] | 437 | def createStudent(): |
---|
| 438 | """Create a student object from applicatnt data |
---|
| 439 | and copy applicant object. |
---|
| 440 | """ |
---|
| 441 | |
---|
[8016] | 442 | class IApplicantEdit(IApplicant): |
---|
[7867] | 443 | """An applicant interface for editing. |
---|
[5753] | 444 | |
---|
[6339] | 445 | Here we can repeat the fields from base data and set the |
---|
| 446 | `required` and `readonly` attributes to True to further restrict |
---|
[7262] | 447 | the data access. Or we can allow only certain certificates to be |
---|
| 448 | selected by choosing the appropriate source. |
---|
| 449 | |
---|
| 450 | We cannot omit fields here. This has to be done in the |
---|
[6339] | 451 | respective form page. |
---|
[6195] | 452 | """ |
---|
[7262] | 453 | |
---|
[8097] | 454 | email = schema.ASCIILine( |
---|
| 455 | title = _(u'Email Address'), |
---|
| 456 | required = True, |
---|
| 457 | constraint=validate_email, |
---|
| 458 | ) |
---|
[7262] | 459 | course1 = schema.Choice( |
---|
[7708] | 460 | title = _(u'1st Choice Course of Study'), |
---|
[7347] | 461 | source = AppCatCertificateSource(), |
---|
[7262] | 462 | required = True, |
---|
| 463 | ) |
---|
| 464 | course2 = schema.Choice( |
---|
[7708] | 465 | title = _(u'2nd Choice Course of Study'), |
---|
[7347] | 466 | source = AppCatCertificateSource(), |
---|
[7262] | 467 | required = False, |
---|
| 468 | ) |
---|
[6301] | 469 | course_admitted = schema.Choice( |
---|
[7708] | 470 | title = _(u'Admitted Course of Study'), |
---|
[7347] | 471 | source = CertificateSource(), |
---|
[5753] | 472 | required = False, |
---|
[6195] | 473 | readonly = True, |
---|
[5753] | 474 | ) |
---|
[6195] | 475 | notice = schema.Text( |
---|
[7708] | 476 | title = _(u'Notice'), |
---|
[5753] | 477 | required = False, |
---|
| 478 | readonly = True, |
---|
| 479 | ) |
---|
[5758] | 480 | |
---|
[8097] | 481 | IApplicantEdit['email'].order = IApplicantEdit[ |
---|
| 482 | 'sex'].order |
---|
| 483 | |
---|
[7268] | 484 | class IApplicantUpdateByRegNo(IApplicant): |
---|
| 485 | """Representation of an applicant. |
---|
| 486 | |
---|
[7270] | 487 | Skip regular reg_number validation if reg_number is used for finding |
---|
[7268] | 488 | the applicant object. |
---|
| 489 | """ |
---|
[7270] | 490 | reg_number = schema.TextLine( |
---|
[7268] | 491 | title = u'Registration Number', |
---|
| 492 | required = False, |
---|
| 493 | ) |
---|
| 494 | |
---|
[8037] | 495 | class IApplicantRegisterUpdate(IApplicant): |
---|
| 496 | """Representation of an applicant for first-time registration. |
---|
| 497 | |
---|
[8778] | 498 | This interface is used when applicants use the registration page to |
---|
[8037] | 499 | update their records. |
---|
| 500 | """ |
---|
| 501 | reg_number = schema.TextLine( |
---|
| 502 | title = u'Registration Number', |
---|
| 503 | required = True, |
---|
| 504 | ) |
---|
| 505 | |
---|
| 506 | firstname = schema.TextLine( |
---|
| 507 | title = _(u'First Name'), |
---|
| 508 | required = True, |
---|
| 509 | ) |
---|
| 510 | |
---|
| 511 | email = schema.ASCIILine( |
---|
| 512 | title = _(u'Email Address'), |
---|
| 513 | required = True, |
---|
| 514 | constraint=validate_email, |
---|
| 515 | ) |
---|
| 516 | |
---|
[7250] | 517 | class IApplicantOnlinePayment(IOnlinePayment): |
---|
| 518 | """An applicant payment via payment gateways. |
---|
| 519 | |
---|
| 520 | """ |
---|
[8422] | 521 | |
---|
| 522 | def doAfterApplicantPayment(): |
---|
| 523 | """Process applicant after payment was made. |
---|
| 524 | |
---|
| 525 | """ |
---|
| 526 | |
---|
[8453] | 527 | def doAfterApplicantPaymentApproval(): |
---|
| 528 | """Process applicant after payment was approved. |
---|
| 529 | |
---|
| 530 | """ |
---|
| 531 | |
---|
[8422] | 532 | def approveApplicantPayment(): |
---|
| 533 | """Approve payment and process applicant. |
---|
| 534 | |
---|
| 535 | """ |
---|