[7191] | 1 | ## $Id: interfaces.py 8969 2012-07-10 09:35:55Z 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 |
---|
[7256] | 20 | from zope.interface import Attribute, Interface |
---|
[6621] | 21 | from zope import schema |
---|
[7620] | 22 | from zc.sourcefactory.contextual import BasicContextualSourceFactory |
---|
[7811] | 23 | from waeup.kofa.interfaces import ( |
---|
[8409] | 24 | IKofaObject, academic_sessions_vocab, validate_email, ICSVExporter) |
---|
[7811] | 25 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8176] | 26 | from waeup.kofa.schema import TextLineChoice, FormattedDate, PhoneNumber |
---|
[7811] | 27 | from waeup.kofa.students.vocabularies import ( |
---|
[7915] | 28 | StudyLevelSource, contextual_reg_num_source, contextual_mat_num_source, |
---|
| 29 | GenderSource, nats_vocab, |
---|
| 30 | ) |
---|
[8160] | 31 | from waeup.kofa.payments.interfaces import ( |
---|
[8174] | 32 | IPaymentsContainer, IOnlinePayment) |
---|
[7915] | 33 | from waeup.kofa.university.vocabularies import ( |
---|
| 34 | CourseSource, StudyModeSource, CertificateSource) |
---|
[6621] | 35 | |
---|
[7620] | 36 | # VerdictSource can't be placed into the vocabularies module because it |
---|
| 37 | # requires importing IStudentsUtils which then leads to circular imports. |
---|
| 38 | class VerdictSource(BasicContextualSourceFactory): |
---|
| 39 | """A verdicts source delivers all verdicts provided |
---|
| 40 | in the portal. |
---|
| 41 | """ |
---|
| 42 | def getValues(self, context): |
---|
[7841] | 43 | verdicts_dict = getUtility(IStudentsUtils).VERDICTS_DICT |
---|
[8820] | 44 | return sorted(verdicts_dict.keys()) |
---|
[7620] | 45 | |
---|
| 46 | def getToken(self, context, value): |
---|
| 47 | return value |
---|
| 48 | |
---|
| 49 | def getTitle(self, context, value): |
---|
[7841] | 50 | verdicts_dict = getUtility(IStudentsUtils).VERDICTS_DICT |
---|
[8820] | 51 | if value != '0': |
---|
| 52 | return verdicts_dict[value] + ' (%s)' % value |
---|
[7688] | 53 | return verdicts_dict[value] |
---|
[7620] | 54 | |
---|
[7681] | 55 | |
---|
[7150] | 56 | class IStudentsUtils(Interface): |
---|
| 57 | """A collection of methods which are subject to customization. |
---|
| 58 | |
---|
| 59 | """ |
---|
[7841] | 60 | def setReturningData(student): |
---|
| 61 | """ This method defines what happens after school fee payment |
---|
| 62 | depending on the student's senate verdict. |
---|
| 63 | |
---|
| 64 | In the base configuration current level is always increased |
---|
| 65 | by 100 no matter which verdict has been assigned. |
---|
| 66 | """ |
---|
| 67 | |
---|
[8595] | 68 | def setPaymentDetails(category, student): |
---|
| 69 | """Create Payment object and set the payment data of a student for |
---|
| 70 | the payment category specified. |
---|
[7150] | 71 | |
---|
| 72 | """ |
---|
| 73 | |
---|
[7186] | 74 | def getAccommodation_details(student): |
---|
[7150] | 75 | """Determine the accommodation dates of a student. |
---|
| 76 | |
---|
| 77 | """ |
---|
| 78 | |
---|
[7186] | 79 | def selectBed(available_beds): |
---|
[7150] | 80 | """Select a bed from a list of available beds. |
---|
| 81 | |
---|
| 82 | In the standard configuration we select the first bed found, |
---|
| 83 | but can also randomize the selection if we like. |
---|
| 84 | """ |
---|
| 85 | |
---|
[7186] | 86 | def renderPDF(view, subject='', filename='slip.pdf',): |
---|
[7150] | 87 | """Render pdf slips for various pages. |
---|
| 88 | |
---|
| 89 | """ |
---|
| 90 | |
---|
[7819] | 91 | class IStudentsContainer(IKofaObject): |
---|
[7096] | 92 | """A students container contains university students. |
---|
[6692] | 93 | |
---|
| 94 | """ |
---|
| 95 | def addStudent(student): |
---|
| 96 | """Add an IStudent object and subcontainers. |
---|
| 97 | |
---|
| 98 | """ |
---|
| 99 | |
---|
| 100 | def archive(id=None): |
---|
| 101 | """Create on-dist archive of students. |
---|
| 102 | |
---|
| 103 | If id is `None`, all students are archived. |
---|
| 104 | |
---|
| 105 | If id contains a single id string, only the respective |
---|
| 106 | students are archived. |
---|
| 107 | |
---|
| 108 | If id contains a list of id strings all of the respective |
---|
| 109 | students types are saved to disk. |
---|
| 110 | """ |
---|
| 111 | |
---|
| 112 | def clear(id=None, archive=True): |
---|
| 113 | """Remove students of type given by 'id'. |
---|
| 114 | |
---|
| 115 | Optionally archive the students. |
---|
| 116 | |
---|
| 117 | If id is `None`, all students are archived. |
---|
| 118 | |
---|
| 119 | If id contains a single id string, only the respective |
---|
| 120 | students are archived. |
---|
| 121 | |
---|
| 122 | If id contains a list of id strings all of the respective |
---|
| 123 | student types are saved to disk. |
---|
| 124 | |
---|
| 125 | If `archive` is ``False`` none of the archive-handling is done |
---|
| 126 | and respective students are simply removed from the |
---|
| 127 | database. |
---|
| 128 | """ |
---|
| 129 | |
---|
[8408] | 130 | unique_student_id = Attribute("""A unique student id.""") |
---|
| 131 | |
---|
[7819] | 132 | class IStudentNavigation(IKofaObject): |
---|
[8735] | 133 | """Interface needed for student navigation, logging, etc. |
---|
[7150] | 134 | |
---|
[6642] | 135 | """ |
---|
[8736] | 136 | student = Attribute('Student object of context.') |
---|
[7150] | 137 | |
---|
[8735] | 138 | def writeLogMessage(view, message): |
---|
| 139 | """Write a view specific log message into students.log. |
---|
| 140 | |
---|
| 141 | """ |
---|
| 142 | |
---|
[7819] | 143 | class IStudentBase(IKofaObject): |
---|
[6631] | 144 | """Representation of student base data. |
---|
[7150] | 145 | |
---|
[6621] | 146 | """ |
---|
[7062] | 147 | history = Attribute('Object history, a list of messages') |
---|
[6637] | 148 | state = Attribute('Returns the registration state of a student') |
---|
[6699] | 149 | password = Attribute('Encrypted password of a student') |
---|
[7203] | 150 | certcode = Attribute('The certificate code of any chosen study course') |
---|
| 151 | depcode = Attribute('The department code of any chosen study course') |
---|
| 152 | faccode = Attribute('The faculty code of any chosen study course') |
---|
[7062] | 153 | current_session = Attribute('The current session of the student') |
---|
[7641] | 154 | current_mode = Attribute('The current mode of the student') |
---|
[7364] | 155 | fullname = Attribute('All name parts separated by hyphens') |
---|
| 156 | display_fullname = Attribute('The fullname of an applicant') |
---|
[8969] | 157 | is_postgrad = Attribute('True if postgraduate student') |
---|
[6637] | 158 | |
---|
[6665] | 159 | student_id = schema.TextLine( |
---|
[7723] | 160 | title = _(u'Student Id'), |
---|
[6849] | 161 | required = False, |
---|
[6665] | 162 | ) |
---|
| 163 | |
---|
[7357] | 164 | firstname = schema.TextLine( |
---|
[7723] | 165 | title = _(u'First Name'), |
---|
[6621] | 166 | required = True, |
---|
| 167 | ) |
---|
| 168 | |
---|
[7357] | 169 | middlename = schema.TextLine( |
---|
[7723] | 170 | title = _(u'Middle Name'), |
---|
[7357] | 171 | required = False, |
---|
| 172 | ) |
---|
| 173 | |
---|
| 174 | lastname = schema.TextLine( |
---|
[7723] | 175 | title = _(u'Last Name (Surname)'), |
---|
[7357] | 176 | required = True, |
---|
| 177 | ) |
---|
| 178 | |
---|
[6996] | 179 | sex = schema.Choice( |
---|
[7723] | 180 | title = _(u'Sex'), |
---|
[6996] | 181 | source = GenderSource(), |
---|
| 182 | required = True, |
---|
| 183 | ) |
---|
| 184 | |
---|
[6788] | 185 | reg_number = TextLineChoice( |
---|
[7723] | 186 | title = _(u'Registration Number'), |
---|
[6696] | 187 | required = True, |
---|
| 188 | readonly = False, |
---|
[6788] | 189 | source = contextual_reg_num_source, |
---|
[6696] | 190 | ) |
---|
| 191 | |
---|
[6788] | 192 | matric_number = TextLineChoice( |
---|
[7723] | 193 | title = _(u'Matriculation Number'), |
---|
[6750] | 194 | required = False, |
---|
| 195 | readonly = False, |
---|
[6788] | 196 | source = contextual_mat_num_source, |
---|
[6750] | 197 | ) |
---|
| 198 | |
---|
[6769] | 199 | adm_code = schema.TextLine( |
---|
[7723] | 200 | title = _(u'PWD Activation Code'), |
---|
[6769] | 201 | required = False, |
---|
| 202 | readonly = True, |
---|
| 203 | ) |
---|
| 204 | |
---|
[7133] | 205 | email = schema.ASCIILine( |
---|
[7723] | 206 | title = _(u'Email'), |
---|
[7133] | 207 | required = False, |
---|
| 208 | constraint=validate_email, |
---|
| 209 | ) |
---|
[8176] | 210 | phone = PhoneNumber( |
---|
[7723] | 211 | title = _(u'Phone'), |
---|
[7331] | 212 | description = u'', |
---|
[7133] | 213 | required = False, |
---|
| 214 | ) |
---|
| 215 | |
---|
[7993] | 216 | class IUGStudentClearance(IKofaObject): |
---|
| 217 | """Representation of undergraduate student clearance data. |
---|
[7150] | 218 | |
---|
[6631] | 219 | """ |
---|
[8160] | 220 | date_of_birth = FormattedDate( |
---|
[7723] | 221 | title = _(u'Date of Birth'), |
---|
[6631] | 222 | required = True, |
---|
[8160] | 223 | show_year = True, |
---|
[6631] | 224 | ) |
---|
| 225 | |
---|
[6695] | 226 | clearance_locked = schema.Bool( |
---|
[7723] | 227 | title = _(u'Clearance form locked'), |
---|
[6695] | 228 | default = False, |
---|
| 229 | ) |
---|
| 230 | |
---|
[6769] | 231 | clr_code = schema.TextLine( |
---|
[7723] | 232 | title = _(u'CLR Activation Code'), |
---|
[6769] | 233 | required = False, |
---|
| 234 | readonly = True, |
---|
| 235 | ) |
---|
| 236 | |
---|
[7523] | 237 | nationality = schema.Choice( |
---|
[8069] | 238 | vocabulary = nats_vocab, |
---|
[7723] | 239 | title = _(u'Nationality'), |
---|
[7983] | 240 | required = False, |
---|
[7523] | 241 | ) |
---|
| 242 | |
---|
[7993] | 243 | class IPGStudentClearance(IUGStudentClearance): |
---|
| 244 | """Representation of postgraduate student clearance data. |
---|
| 245 | |
---|
| 246 | """ |
---|
| 247 | employer = schema.TextLine( |
---|
| 248 | title = _(u'Employer'), |
---|
| 249 | required = False, |
---|
| 250 | readonly = False, |
---|
| 251 | ) |
---|
| 252 | |
---|
[7819] | 253 | class IStudentPersonal(IKofaObject): |
---|
[6631] | 254 | """Representation of student personal data. |
---|
[7150] | 255 | |
---|
[6631] | 256 | """ |
---|
[6651] | 257 | perm_address = schema.Text( |
---|
[7723] | 258 | title = _(u'Permanent Address'), |
---|
[6631] | 259 | required = False, |
---|
| 260 | ) |
---|
| 261 | |
---|
[8008] | 262 | class IStudent(IStudentBase,IUGStudentClearance,IPGStudentClearance, |
---|
| 263 | IStudentPersonal): |
---|
[6631] | 264 | """Representation of a student. |
---|
[7150] | 265 | |
---|
[6631] | 266 | """ |
---|
| 267 | |
---|
[6849] | 268 | class IStudentUpdateByRegNo(IStudent): |
---|
| 269 | """Representation of a student. Skip regular reg_number validation. |
---|
[7150] | 270 | |
---|
[6849] | 271 | """ |
---|
| 272 | reg_number = schema.TextLine( |
---|
[7723] | 273 | title = _(u'Registration Number'), |
---|
[6849] | 274 | required = False, |
---|
| 275 | ) |
---|
| 276 | |
---|
| 277 | class IStudentUpdateByMatricNo(IStudent): |
---|
| 278 | """Representation of a student. Skip regular matric_number validation. |
---|
[7150] | 279 | |
---|
[6849] | 280 | """ |
---|
| 281 | matric_number = schema.TextLine( |
---|
[7723] | 282 | title = _(u'Matriculation Number'), |
---|
[6849] | 283 | required = False, |
---|
| 284 | ) |
---|
| 285 | |
---|
[8779] | 286 | class IStudentRequestPW(IStudent): |
---|
| 287 | """Representation of an student for first-time password request. |
---|
| 288 | |
---|
| 289 | This interface is used when students use the requestpw page to |
---|
| 290 | login for the the first time. |
---|
| 291 | """ |
---|
[8854] | 292 | number = schema.TextLine( |
---|
| 293 | title = _(u'Registr. or Matric. Number'), |
---|
[8779] | 294 | required = True, |
---|
| 295 | ) |
---|
| 296 | |
---|
| 297 | firstname = schema.TextLine( |
---|
| 298 | title = _(u'First Name'), |
---|
| 299 | required = True, |
---|
| 300 | ) |
---|
| 301 | |
---|
| 302 | email = schema.ASCIILine( |
---|
| 303 | title = _(u'Email Address'), |
---|
| 304 | required = True, |
---|
| 305 | constraint=validate_email, |
---|
| 306 | ) |
---|
| 307 | |
---|
[7819] | 308 | class IStudentStudyCourse(IKofaObject): |
---|
[6633] | 309 | """A container for student study levels. |
---|
| 310 | |
---|
| 311 | """ |
---|
[6648] | 312 | certificate = schema.Choice( |
---|
[7723] | 313 | title = _(u'Certificate'), |
---|
[6648] | 314 | source = CertificateSource(), |
---|
[7209] | 315 | required = False, |
---|
[6633] | 316 | ) |
---|
[6635] | 317 | |
---|
[6996] | 318 | entry_mode = schema.Choice( |
---|
[7723] | 319 | title = _(u'Entry Mode'), |
---|
[7681] | 320 | source = StudyModeSource(), |
---|
[6996] | 321 | required = True, |
---|
| 322 | readonly = False, |
---|
| 323 | ) |
---|
| 324 | |
---|
| 325 | entry_session = schema.Choice( |
---|
[7723] | 326 | title = _(u'Entry Session'), |
---|
[6996] | 327 | source = academic_sessions_vocab, |
---|
[7425] | 328 | #default = datetime.now().year, |
---|
[6996] | 329 | required = True, |
---|
| 330 | readonly = False, |
---|
| 331 | ) |
---|
| 332 | |
---|
[6724] | 333 | current_session = schema.Choice( |
---|
[7723] | 334 | title = _(u'Current Session'), |
---|
[6744] | 335 | source = academic_sessions_vocab, |
---|
[6724] | 336 | required = True, |
---|
[6996] | 337 | readonly = False, |
---|
[6724] | 338 | ) |
---|
| 339 | |
---|
| 340 | current_level = schema.Choice( |
---|
[7723] | 341 | title = _(u'Current Level'), |
---|
[6725] | 342 | source = StudyLevelSource(), |
---|
| 343 | required = False, |
---|
[6996] | 344 | readonly = False, |
---|
[6724] | 345 | ) |
---|
| 346 | |
---|
| 347 | current_verdict = schema.Choice( |
---|
[7723] | 348 | title = _(u'Current Verdict'), |
---|
[7619] | 349 | source = VerdictSource(), |
---|
[8820] | 350 | default = '0', |
---|
[6725] | 351 | required = False, |
---|
[6724] | 352 | ) |
---|
| 353 | |
---|
| 354 | previous_verdict = schema.Choice( |
---|
[7723] | 355 | title = _(u'Previous Verdict'), |
---|
[7619] | 356 | source = VerdictSource(), |
---|
[8820] | 357 | default = '0', |
---|
[6725] | 358 | required = False, |
---|
[6724] | 359 | ) |
---|
| 360 | |
---|
[7951] | 361 | class IStudentVerdictUpdate(IKofaObject): |
---|
| 362 | """A interface for verdict imports. |
---|
| 363 | |
---|
| 364 | """ |
---|
| 365 | |
---|
| 366 | current_verdict = schema.Choice( |
---|
| 367 | title = _(u'Current Verdict'), |
---|
| 368 | source = VerdictSource(), |
---|
| 369 | required = True, |
---|
| 370 | ) |
---|
| 371 | |
---|
| 372 | current_session = schema.Choice( |
---|
| 373 | title = _(u'Current Session'), |
---|
| 374 | source = academic_sessions_vocab, |
---|
| 375 | required = True, |
---|
| 376 | ) |
---|
| 377 | |
---|
| 378 | current_level = schema.Choice( |
---|
| 379 | title = _(u'Current Level'), |
---|
| 380 | source = StudyLevelSource(), |
---|
| 381 | required = True, |
---|
| 382 | ) |
---|
| 383 | |
---|
[7819] | 384 | class IStudentStudyLevel(IKofaObject): |
---|
[6774] | 385 | """A container for course tickets. |
---|
| 386 | |
---|
| 387 | """ |
---|
| 388 | level = Attribute('The level code') |
---|
[6793] | 389 | validation_date = Attribute('The date of validation') |
---|
| 390 | validated_by = Attribute('User Id of course adviser') |
---|
[6774] | 391 | |
---|
[6793] | 392 | level_session = schema.Choice( |
---|
[7723] | 393 | title = _(u'Session'), |
---|
[6793] | 394 | source = academic_sessions_vocab, |
---|
| 395 | required = True, |
---|
| 396 | ) |
---|
[6781] | 397 | |
---|
[6793] | 398 | level_verdict = schema.Choice( |
---|
[7723] | 399 | title = _(u'Verdict'), |
---|
[7619] | 400 | source = VerdictSource(), |
---|
[8820] | 401 | default = '0', |
---|
[6793] | 402 | required = False, |
---|
| 403 | ) |
---|
| 404 | |
---|
[8920] | 405 | def addCourseTicket(ticket, course): |
---|
[8182] | 406 | """Add a course ticket object. |
---|
| 407 | """ |
---|
| 408 | |
---|
[7819] | 409 | class ICourseTicket(IKofaObject): |
---|
[6781] | 410 | """A course ticket. |
---|
| 411 | |
---|
| 412 | """ |
---|
[6783] | 413 | code = Attribute('code of the original course') |
---|
| 414 | title = Attribute('title of the original course') |
---|
| 415 | credits = Attribute('credits of the original course') |
---|
| 416 | passmark = Attribute('passmark of the original course') |
---|
| 417 | semester = Attribute('semester of the original course') |
---|
[7304] | 418 | fcode = Attribute('faculty code of the original course') |
---|
| 419 | dcode = Attribute('department code of the original course') |
---|
[6781] | 420 | |
---|
[7665] | 421 | mandatory = schema.Bool( |
---|
[7723] | 422 | title = _(u'Mandatory'), |
---|
[6795] | 423 | default = False, |
---|
| 424 | required = False, |
---|
| 425 | readonly = False, |
---|
| 426 | ) |
---|
| 427 | |
---|
[6781] | 428 | score = schema.Int( |
---|
[7723] | 429 | title = _(u'Score'), |
---|
[6781] | 430 | default = 0, |
---|
| 431 | required = False, |
---|
| 432 | readonly = False, |
---|
| 433 | ) |
---|
| 434 | |
---|
[6806] | 435 | automatic = schema.Bool( |
---|
[7723] | 436 | title = _(u'Automatical Creation'), |
---|
[6806] | 437 | default = False, |
---|
| 438 | required = False, |
---|
| 439 | readonly = True, |
---|
| 440 | ) |
---|
| 441 | |
---|
[7661] | 442 | carry_over = schema.Bool( |
---|
[7723] | 443 | title = _(u'Carry-over Course'), |
---|
[7661] | 444 | default = False, |
---|
| 445 | required = False, |
---|
| 446 | readonly = False, |
---|
| 447 | ) |
---|
| 448 | |
---|
[7633] | 449 | def getLevel(): |
---|
| 450 | """Returns the id of the level the ticket has been added to. |
---|
| 451 | """ |
---|
| 452 | |
---|
| 453 | def getLevelSession(): |
---|
| 454 | """Returns the session of the level the ticket has been added to. |
---|
| 455 | """ |
---|
| 456 | |
---|
[6795] | 457 | class ICourseTicketAdd(ICourseTicket): |
---|
[7150] | 458 | """An interface for adding course tickets. |
---|
[6795] | 459 | |
---|
| 460 | """ |
---|
| 461 | course = schema.Choice( |
---|
[7723] | 462 | title = _(u'Course'), |
---|
[6795] | 463 | source = CourseSource(), |
---|
| 464 | readonly = False, |
---|
| 465 | ) |
---|
| 466 | |
---|
[7819] | 467 | class IStudentAccommodation(IKofaObject): |
---|
[6635] | 468 | """A container for student accommodation objects. |
---|
| 469 | |
---|
| 470 | """ |
---|
| 471 | |
---|
[7819] | 472 | class IBedTicket(IKofaObject): |
---|
[6989] | 473 | """A ticket for accommodation booking. |
---|
| 474 | |
---|
| 475 | """ |
---|
[6996] | 476 | bed = Attribute('The bed object.') |
---|
| 477 | |
---|
| 478 | bed_coordinates = schema.TextLine( |
---|
[7723] | 479 | title = _(u'Bed Coordinates'), |
---|
[6992] | 480 | required = False, |
---|
[7014] | 481 | readonly = False, |
---|
[6992] | 482 | ) |
---|
| 483 | |
---|
[6996] | 484 | bed_type = schema.TextLine( |
---|
[7723] | 485 | title = _(u'Bed Type'), |
---|
[6996] | 486 | required = False, |
---|
[7014] | 487 | readonly = False, |
---|
[6996] | 488 | ) |
---|
| 489 | |
---|
[6992] | 490 | booking_session = schema.Choice( |
---|
[7723] | 491 | title = _(u'Session'), |
---|
[6992] | 492 | source = academic_sessions_vocab, |
---|
| 493 | required = True, |
---|
[7014] | 494 | readonly = True, |
---|
[6992] | 495 | ) |
---|
| 496 | |
---|
[8170] | 497 | booking_date = schema.Datetime( |
---|
[7723] | 498 | title = _(u'Booking Date'), |
---|
[6992] | 499 | required = False, |
---|
[7014] | 500 | readonly = True, |
---|
[6992] | 501 | ) |
---|
| 502 | |
---|
| 503 | booking_code = schema.TextLine( |
---|
[7723] | 504 | title = _(u'Booking Activation Code'), |
---|
[6992] | 505 | required = False, |
---|
[7014] | 506 | readonly = True, |
---|
[6992] | 507 | ) |
---|
| 508 | |
---|
[6994] | 509 | def getSessionString(): |
---|
[7633] | 510 | """Returns the title of academic_sessions_vocab term. |
---|
[7150] | 511 | |
---|
[6994] | 512 | """ |
---|
[6992] | 513 | |
---|
[6860] | 514 | class IStudentPaymentsContainer(IPaymentsContainer): |
---|
[6635] | 515 | """A container for student payment objects. |
---|
| 516 | |
---|
| 517 | """ |
---|
| 518 | |
---|
[6877] | 519 | class IStudentOnlinePayment(IOnlinePayment): |
---|
| 520 | """A student payment via payment gateways. |
---|
| 521 | |
---|
| 522 | """ |
---|
| 523 | |
---|
[8268] | 524 | p_level = schema.Int( |
---|
| 525 | title = _(u'Payment Level'), |
---|
| 526 | required = False, |
---|
| 527 | readonly = True, |
---|
| 528 | ) |
---|
[6877] | 529 | |
---|
[8422] | 530 | def doAfterStudentPayment(): |
---|
| 531 | """Process student after payment was made. |
---|
| 532 | |
---|
| 533 | """ |
---|
| 534 | |
---|
[8453] | 535 | def doAfterStudentPaymentApproval(): |
---|
| 536 | """Process student after payment was approved. |
---|
| 537 | |
---|
| 538 | """ |
---|
| 539 | |
---|
[8420] | 540 | def approveStudentPayment(): |
---|
[8422] | 541 | """Approve payment and process student. |
---|
[8420] | 542 | |
---|
| 543 | """ |
---|
| 544 | |
---|
[8268] | 545 | IStudentOnlinePayment['p_level'].order = IStudentOnlinePayment[ |
---|
| 546 | 'p_session'].order |
---|
[8408] | 547 | |
---|
| 548 | class ICSVStudentExporter(ICSVExporter): |
---|
| 549 | """A regular ICSVExporter that additionally supports exporting |
---|
| 550 | data from a given student object. |
---|
| 551 | """ |
---|
| 552 | |
---|
| 553 | def export_student(student, filepath=None): |
---|
| 554 | """Export data for a given student. |
---|
| 555 | """ |
---|