[7191] | 1 | ## $Id: browser.py 16387 2021-01-27 09:57:32Z henrik $ |
---|
| 2 | ## |
---|
[6621] | 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 | ## |
---|
| 18 | """UI components for students and related components. |
---|
| 19 | """ |
---|
[13935] | 20 | import csv |
---|
[6621] | 21 | import grok |
---|
[10458] | 22 | import pytz |
---|
[13935] | 23 | import sys |
---|
[15880] | 24 | import os |
---|
[15626] | 25 | import textwrap |
---|
[13935] | 26 | from cStringIO import StringIO |
---|
| 27 | from datetime import datetime |
---|
| 28 | from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState |
---|
[7275] | 29 | from urllib import urlencode |
---|
[13935] | 30 | from zope.catalog.interfaces import ICatalog |
---|
| 31 | from zope.component import queryUtility, getUtility, createObject |
---|
[7015] | 32 | from zope.event import notify |
---|
[13935] | 33 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
[7723] | 34 | from zope.i18n import translate |
---|
[9467] | 35 | from zope.schema.interfaces import ConstraintNotSatisfied, RequiredMissing |
---|
[10080] | 36 | from zope.security import checkPermission |
---|
[15422] | 37 | from zope.securitypolicy.interfaces import IPrincipalRoleManager |
---|
[16299] | 38 | from waeup.kofa.smtp import encode_address |
---|
[13935] | 39 | from waeup.kofa.accesscodes import invalidate_accesscode, get_access_code |
---|
[7811] | 40 | from waeup.kofa.accesscodes.workflow import USED |
---|
[15624] | 41 | from waeup.kofa.browser.pdf import ENTRY1_STYLE |
---|
[13935] | 42 | from waeup.kofa.browser.breadcrumbs import Breadcrumb |
---|
| 43 | from waeup.kofa.browser.interfaces import ICaptchaManager |
---|
[9217] | 44 | from waeup.kofa.browser.layout import ( |
---|
[7819] | 45 | KofaPage, KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage, |
---|
[13055] | 46 | NullValidator, jsaction, action, UtilityView) |
---|
[13200] | 47 | from waeup.kofa.browser.pages import ( |
---|
[13898] | 48 | ContactAdminFormPage, ExportCSVView, doll_up, exports_not_allowed, |
---|
| 49 | LocalRoleAssignmentUtilityView) |
---|
[9797] | 50 | from waeup.kofa.hostels.hostel import NOT_OCCUPIED |
---|
[7811] | 51 | from waeup.kofa.interfaces import ( |
---|
[7819] | 52 | IKofaObject, IUserAccount, IExtFileStore, IPasswordValidator, IContactForm, |
---|
[13935] | 53 | IKofaUtils, IObjectHistory, academic_sessions, ICSVExporter, |
---|
| 54 | academic_sessions_vocab, IDataCenter, DOCLINK) |
---|
[7811] | 55 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[15609] | 56 | from waeup.kofa.mandates.mandate import PasswordMandate, ParentsPasswordMandate |
---|
[9806] | 57 | from waeup.kofa.university.interfaces import ( |
---|
| 58 | IDepartment, ICertificate, ICourse) |
---|
[13935] | 59 | from waeup.kofa.university.certificate import ( |
---|
| 60 | VirtualCertificateExportJobContainer) |
---|
| 61 | from waeup.kofa.university.department import ( |
---|
| 62 | VirtualDepartmentExportJobContainer) |
---|
[12632] | 63 | from waeup.kofa.university.faculty import VirtualFacultyExportJobContainer |
---|
[10247] | 64 | from waeup.kofa.university.facultiescontainer import ( |
---|
[13935] | 65 | VirtualFacultiesExportJobContainer) |
---|
[9843] | 66 | from waeup.kofa.university.course import ( |
---|
| 67 | VirtualCourseExportJobContainer,) |
---|
[9797] | 68 | from waeup.kofa.university.vocabularies import course_levels |
---|
[9813] | 69 | from waeup.kofa.utils.batching import VirtualExportJobContainer |
---|
[13935] | 70 | from waeup.kofa.utils.helpers import get_current_principal, now |
---|
| 71 | from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget |
---|
[7811] | 72 | from waeup.kofa.students.interfaces import ( |
---|
[13935] | 73 | IStudentsContainer, IStudent, IUGStudentClearance, IPGStudentClearance, |
---|
[9563] | 74 | IStudentPersonal, IStudentPersonalEdit, IStudentBase, IStudentStudyCourse, |
---|
[15163] | 75 | IStudentStudyCourseTransfer, |
---|
[13935] | 76 | IStudentAccommodation, IStudentStudyLevel, ICourseTicket, ICourseTicketAdd, |
---|
| 77 | IStudentPaymentsContainer, IStudentOnlinePayment, IStudentPreviousPayment, |
---|
| 78 | IStudentBalancePayment, IBedTicket, IStudentsUtils, IStudentRequestPW, |
---|
[6621] | 79 | ) |
---|
[9806] | 80 | from waeup.kofa.students.catalog import search, StudentQueryResultItem |
---|
[9797] | 81 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
[13935] | 82 | from waeup.kofa.students.workflow import ( |
---|
| 83 | ADMITTED, PAID, CLEARANCE, REQUESTED, RETURNING, CLEARED, REGISTERED, |
---|
[15163] | 84 | VALIDATED, GRADUATED, TRANSREQ, TRANSVAL, TRANSREL, FORBIDDEN_POSTGRAD_TRANS |
---|
[13935] | 85 | ) |
---|
[6621] | 86 | |
---|
[9797] | 87 | |
---|
[13935] | 88 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
[8779] | 89 | |
---|
[13935] | 90 | |
---|
[14225] | 91 | class TicketError(Exception): |
---|
| 92 | """A course ticket could not be added |
---|
| 93 | """ |
---|
| 94 | pass |
---|
| 95 | |
---|
[8737] | 96 | # Save function used for save methods in pages |
---|
| 97 | def msave(view, **data): |
---|
| 98 | changed_fields = view.applyData(view.context, **data) |
---|
| 99 | # Turn list of lists into single list |
---|
| 100 | if changed_fields: |
---|
[13935] | 101 | changed_fields = reduce(lambda x, y: x+y, changed_fields.values()) |
---|
[8737] | 102 | # Inform catalog if certificate has changed |
---|
| 103 | # (applyData does this only for the context) |
---|
| 104 | if 'certificate' in changed_fields: |
---|
| 105 | notify(grok.ObjectModifiedEvent(view.context.student)) |
---|
| 106 | fields_string = ' + '.join(changed_fields) |
---|
| 107 | view.flash(_('Form has been saved.')) |
---|
| 108 | if fields_string: |
---|
| 109 | view.context.writeLogMessage(view, 'saved: %s' % fields_string) |
---|
| 110 | return |
---|
| 111 | |
---|
[7145] | 112 | def emit_lock_message(view): |
---|
[7642] | 113 | """Flash a lock message. |
---|
| 114 | """ |
---|
[11254] | 115 | view.flash(_('The requested form is locked (read-only).'), type="warning") |
---|
[7133] | 116 | view.redirect(view.url(view.context)) |
---|
| 117 | return |
---|
| 118 | |
---|
[8921] | 119 | def translated_values(view): |
---|
[9685] | 120 | """Translate course ticket attribute values to be displayed on |
---|
| 121 | studylevel pages. |
---|
| 122 | """ |
---|
[8921] | 123 | lang = view.request.cookies.get('kofa.language') |
---|
| 124 | for value in view.context.values(): |
---|
[9328] | 125 | # We have to unghostify (according to Tres Seaver) the __dict__ |
---|
| 126 | # by activating the object, otherwise value_dict will be empty |
---|
| 127 | # when calling the first time. |
---|
[9330] | 128 | value._p_activate() |
---|
[8921] | 129 | value_dict = dict([i for i in value.__dict__.items()]) |
---|
[11254] | 130 | value_dict['url'] = view.url(value) |
---|
[9698] | 131 | value_dict['removable_by_student'] = value.removable_by_student |
---|
[8921] | 132 | value_dict['mandatory'] = translate(str(value.mandatory), 'zope', |
---|
| 133 | target_language=lang) |
---|
| 134 | value_dict['carry_over'] = translate(str(value.carry_over), 'zope', |
---|
| 135 | target_language=lang) |
---|
[14575] | 136 | value_dict['outstanding'] = translate(str(value.outstanding), 'zope', |
---|
| 137 | target_language=lang) |
---|
[8921] | 138 | value_dict['automatic'] = translate(str(value.automatic), 'zope', |
---|
| 139 | target_language=lang) |
---|
[9685] | 140 | value_dict['grade'] = value.grade |
---|
| 141 | value_dict['weight'] = value.weight |
---|
[14649] | 142 | value_dict['course_category'] = value.course_category |
---|
[14946] | 143 | value_dict['total_score'] = value.total_score |
---|
[10436] | 144 | semester_dict = getUtility(IKofaUtils).SEMESTER_DICT |
---|
[10440] | 145 | value_dict['semester'] = semester_dict[ |
---|
| 146 | value.semester].replace('mester', 'm.') |
---|
[8921] | 147 | yield value_dict |
---|
| 148 | |
---|
[9895] | 149 | def addCourseTicket(view, course=None): |
---|
| 150 | students_utils = getUtility(IStudentsUtils) |
---|
| 151 | ticket = createObject(u'waeup.CourseTicket') |
---|
| 152 | ticket.automatic = False |
---|
| 153 | ticket.carry_over = False |
---|
[14584] | 154 | warning = students_utils.warnCreditsOOR(view.context, course) |
---|
| 155 | if warning: |
---|
| 156 | view.flash(warning, type="warning") |
---|
[9895] | 157 | return False |
---|
[15986] | 158 | warning = students_utils.warnCourseAlreadyPassed(view.context, course) |
---|
| 159 | if warning: |
---|
| 160 | view.flash(warning, type="warning") |
---|
| 161 | return False |
---|
[9895] | 162 | try: |
---|
| 163 | view.context.addCourseTicket(ticket, course) |
---|
| 164 | except KeyError: |
---|
[11254] | 165 | view.flash(_('The ticket exists.'), type="warning") |
---|
[9895] | 166 | return False |
---|
[14251] | 167 | except TicketError, error: |
---|
[14225] | 168 | # Ticket errors are not being raised in the base package. |
---|
[14251] | 169 | view.flash(error, type="warning") |
---|
[14225] | 170 | return False |
---|
[9895] | 171 | view.flash(_('Successfully added ${a}.', |
---|
| 172 | mapping = {'a':ticket.code})) |
---|
[9924] | 173 | view.context.writeLogMessage( |
---|
| 174 | view,'added: %s|%s|%s' % ( |
---|
[9925] | 175 | ticket.code, ticket.level, ticket.level_session)) |
---|
[9895] | 176 | return True |
---|
| 177 | |
---|
[10266] | 178 | def level_dict(studycourse): |
---|
| 179 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 180 | level_dict = {} |
---|
| 181 | studylevelsource = StudyLevelSource().factory |
---|
| 182 | for code in studylevelsource.getValues(studycourse): |
---|
| 183 | title = translate(studylevelsource.getTitle(studycourse, code), |
---|
| 184 | 'waeup.kofa', target_language=portal_language) |
---|
| 185 | level_dict[code] = title |
---|
| 186 | return level_dict |
---|
| 187 | |
---|
[6629] | 188 | class StudentsBreadcrumb(Breadcrumb): |
---|
| 189 | """A breadcrumb for the students container. |
---|
| 190 | """ |
---|
| 191 | grok.context(IStudentsContainer) |
---|
[7723] | 192 | title = _('Students') |
---|
[6629] | 193 | |
---|
[7459] | 194 | @property |
---|
| 195 | def target(self): |
---|
| 196 | user = get_current_principal() |
---|
| 197 | if getattr(user, 'user_type', None) == 'student': |
---|
| 198 | return None |
---|
| 199 | return self.viewname |
---|
| 200 | |
---|
[6818] | 201 | class StudentBreadcrumb(Breadcrumb): |
---|
| 202 | """A breadcrumb for the student container. |
---|
| 203 | """ |
---|
| 204 | grok.context(IStudent) |
---|
| 205 | |
---|
| 206 | def title(self): |
---|
[7364] | 207 | return self.context.display_fullname |
---|
[6818] | 208 | |
---|
[6635] | 209 | class SudyCourseBreadcrumb(Breadcrumb): |
---|
| 210 | """A breadcrumb for the student study course. |
---|
| 211 | """ |
---|
| 212 | grok.context(IStudentStudyCourse) |
---|
| 213 | |
---|
[9140] | 214 | def title(self): |
---|
| 215 | if self.context.is_current: |
---|
| 216 | return _('Study Course') |
---|
| 217 | else: |
---|
| 218 | return _('Previous Study Course') |
---|
| 219 | |
---|
[6635] | 220 | class PaymentsBreadcrumb(Breadcrumb): |
---|
| 221 | """A breadcrumb for the student payments folder. |
---|
| 222 | """ |
---|
[6859] | 223 | grok.context(IStudentPaymentsContainer) |
---|
[7723] | 224 | title = _('Payments') |
---|
[6635] | 225 | |
---|
[6870] | 226 | class OnlinePaymentBreadcrumb(Breadcrumb): |
---|
[7251] | 227 | """A breadcrumb for payments. |
---|
[6870] | 228 | """ |
---|
[6877] | 229 | grok.context(IStudentOnlinePayment) |
---|
[6870] | 230 | |
---|
| 231 | @property |
---|
| 232 | def title(self): |
---|
| 233 | return self.context.p_id |
---|
| 234 | |
---|
[6635] | 235 | class AccommodationBreadcrumb(Breadcrumb): |
---|
| 236 | """A breadcrumb for the student accommodation folder. |
---|
| 237 | """ |
---|
| 238 | grok.context(IStudentAccommodation) |
---|
[7723] | 239 | title = _('Accommodation') |
---|
[6635] | 240 | |
---|
[6994] | 241 | class BedTicketBreadcrumb(Breadcrumb): |
---|
| 242 | """A breadcrumb for bed tickets. |
---|
| 243 | """ |
---|
| 244 | grok.context(IBedTicket) |
---|
[7009] | 245 | |
---|
[6994] | 246 | @property |
---|
| 247 | def title(self): |
---|
[7723] | 248 | return _('Bed Ticket ${a}', |
---|
| 249 | mapping = {'a':self.context.getSessionString()}) |
---|
[6994] | 250 | |
---|
[6776] | 251 | class StudyLevelBreadcrumb(Breadcrumb): |
---|
| 252 | """A breadcrumb for course lists. |
---|
| 253 | """ |
---|
| 254 | grok.context(IStudentStudyLevel) |
---|
| 255 | |
---|
| 256 | @property |
---|
| 257 | def title(self): |
---|
[7834] | 258 | return self.context.level_title |
---|
[6776] | 259 | |
---|
[7819] | 260 | class StudentsContainerPage(KofaPage): |
---|
[6626] | 261 | """The standard view for student containers. |
---|
[6621] | 262 | """ |
---|
| 263 | grok.context(IStudentsContainer) |
---|
| 264 | grok.name('index') |
---|
[7240] | 265 | grok.require('waeup.viewStudentsContainer') |
---|
[6695] | 266 | grok.template('containerpage') |
---|
[11254] | 267 | label = _('Find students') |
---|
[10647] | 268 | search_button = _('Find student(s)') |
---|
[6642] | 269 | pnav = 4 |
---|
[6621] | 270 | |
---|
[6626] | 271 | def update(self, *args, **kw): |
---|
| 272 | form = self.request.form |
---|
| 273 | self.hitlist = [] |
---|
[15417] | 274 | if form.get('searchtype', None) in ( |
---|
| 275 | 'suspended', TRANSREQ, TRANSVAL, GRADUATED): |
---|
[9795] | 276 | self.searchtype = form['searchtype'] |
---|
| 277 | self.searchterm = None |
---|
| 278 | elif 'searchterm' in form and form['searchterm']: |
---|
[6626] | 279 | self.searchterm = form['searchterm'] |
---|
| 280 | self.searchtype = form['searchtype'] |
---|
| 281 | elif 'old_searchterm' in form: |
---|
| 282 | self.searchterm = form['old_searchterm'] |
---|
| 283 | self.searchtype = form['old_searchtype'] |
---|
| 284 | else: |
---|
| 285 | if 'search' in form: |
---|
[11254] | 286 | self.flash(_('Empty search string'), type="warning") |
---|
[6626] | 287 | return |
---|
[7068] | 288 | if self.searchtype == 'current_session': |
---|
[8081] | 289 | try: |
---|
| 290 | self.searchterm = int(self.searchterm) |
---|
| 291 | except ValueError: |
---|
[11254] | 292 | self.flash(_('Only year dates allowed (e.g. 2011).'), |
---|
| 293 | type="danger") |
---|
[8081] | 294 | return |
---|
[6626] | 295 | self.hitlist = search(query=self.searchterm, |
---|
| 296 | searchtype=self.searchtype, view=self) |
---|
| 297 | if not self.hitlist: |
---|
[11254] | 298 | self.flash(_('No student found.'), type="warning") |
---|
[6626] | 299 | return |
---|
| 300 | |
---|
[7819] | 301 | class StudentsContainerManagePage(KofaPage): |
---|
[6626] | 302 | """The manage page for student containers. |
---|
[6622] | 303 | """ |
---|
| 304 | grok.context(IStudentsContainer) |
---|
| 305 | grok.name('manage') |
---|
[7136] | 306 | grok.require('waeup.manageStudent') |
---|
[6695] | 307 | grok.template('containermanagepage') |
---|
[6642] | 308 | pnav = 4 |
---|
[13076] | 309 | label = _('Manage students section') |
---|
[10647] | 310 | search_button = _('Find student(s)') |
---|
[7735] | 311 | remove_button = _('Remove selected') |
---|
[16299] | 312 | send_email_button = _('Send bulk email') |
---|
[13177] | 313 | doclink = DOCLINK + '/students.html' |
---|
[6622] | 314 | |
---|
[6626] | 315 | def update(self, *args, **kw): |
---|
| 316 | form = self.request.form |
---|
| 317 | self.hitlist = [] |
---|
[15417] | 318 | if form.get('searchtype', None) in ( |
---|
| 319 | 'suspended', TRANSREQ, TRANSVAL, GRADUATED): |
---|
[9795] | 320 | self.searchtype = form['searchtype'] |
---|
| 321 | self.searchterm = None |
---|
| 322 | elif 'searchterm' in form and form['searchterm']: |
---|
[6626] | 323 | self.searchterm = form['searchterm'] |
---|
| 324 | self.searchtype = form['searchtype'] |
---|
| 325 | elif 'old_searchterm' in form: |
---|
| 326 | self.searchterm = form['old_searchterm'] |
---|
| 327 | self.searchtype = form['old_searchtype'] |
---|
| 328 | else: |
---|
| 329 | if 'search' in form: |
---|
[11254] | 330 | self.flash(_('Empty search string'), type="warning") |
---|
[6626] | 331 | return |
---|
[8082] | 332 | if self.searchtype == 'current_session': |
---|
| 333 | try: |
---|
| 334 | self.searchterm = int(self.searchterm) |
---|
| 335 | except ValueError: |
---|
[11254] | 336 | self.flash(_('Only year dates allowed (e.g. 2011).'), |
---|
| 337 | type="danger") |
---|
[8082] | 338 | return |
---|
[6626] | 339 | if not 'entries' in form: |
---|
| 340 | self.hitlist = search(query=self.searchterm, |
---|
| 341 | searchtype=self.searchtype, view=self) |
---|
| 342 | if not self.hitlist: |
---|
[11254] | 343 | self.flash(_('No student found.'), type="warning") |
---|
[16299] | 344 | if 'remove' in form or 'send_email' in form: |
---|
[11254] | 345 | self.flash(_('No item selected.'), type="warning") |
---|
[6626] | 346 | return |
---|
| 347 | entries = form['entries'] |
---|
| 348 | if isinstance(entries, basestring): |
---|
| 349 | entries = [entries] |
---|
[16299] | 350 | entries.sort() |
---|
[16302] | 351 | if 'send_email' in form and len(entries)>50: |
---|
| 352 | self.flash(_( |
---|
| 353 | 'Maximum of 50 emails can be sent. Please select less students.'), |
---|
| 354 | type="warning") |
---|
| 355 | return |
---|
[6626] | 356 | deleted = [] |
---|
[16300] | 357 | emails_tobesent = [] |
---|
[6626] | 358 | for entry in entries: |
---|
| 359 | if 'remove' in form: |
---|
| 360 | del self.context[entry] |
---|
| 361 | deleted.append(entry) |
---|
[16299] | 362 | if 'send_email' in form and self.context[entry].email: |
---|
[16300] | 363 | emails_tobesent.append(( |
---|
[16299] | 364 | self.context[entry].email, |
---|
[16300] | 365 | self.context[entry].student_id)) |
---|
[16299] | 366 | if 'send_email' in form and not len(emails_tobesent): |
---|
| 367 | self.flash(_('No email address found.'), type="warning") |
---|
| 368 | return |
---|
| 369 | if len(emails_tobesent): |
---|
[16300] | 370 | args = {'bcc_to': emails_tobesent} |
---|
[16299] | 371 | self.redirect(self.url(self.context) + |
---|
| 372 | '/send_bulk_email?%s' % urlencode(args)) |
---|
| 373 | return |
---|
[6626] | 374 | self.hitlist = search(query=self.searchterm, |
---|
| 375 | searchtype=self.searchtype, view=self) |
---|
| 376 | if len(deleted): |
---|
[7723] | 377 | self.flash(_('Successfully removed: ${a}', |
---|
| 378 | mapping = {'a':', '.join(deleted)})) |
---|
[6622] | 379 | return |
---|
| 380 | |
---|
[7819] | 381 | class StudentAddFormPage(KofaAddFormPage): |
---|
[6622] | 382 | """Add-form to add a student. |
---|
| 383 | """ |
---|
| 384 | grok.context(IStudentsContainer) |
---|
[7136] | 385 | grok.require('waeup.manageStudent') |
---|
[6622] | 386 | grok.name('addstudent') |
---|
[7357] | 387 | form_fields = grok.AutoFields(IStudent).select( |
---|
[7520] | 388 | 'firstname', 'middlename', 'lastname', 'reg_number') |
---|
[7723] | 389 | label = _('Add student') |
---|
[6642] | 390 | pnav = 4 |
---|
[6622] | 391 | |
---|
[13108] | 392 | @action(_('Create student'), style='primary') |
---|
[6622] | 393 | def addStudent(self, **data): |
---|
| 394 | student = createObject(u'waeup.Student') |
---|
| 395 | self.applyData(student, **data) |
---|
[6652] | 396 | self.context.addStudent(student) |
---|
[7723] | 397 | self.flash(_('Student record created.')) |
---|
[6651] | 398 | self.redirect(self.url(self.context[student.student_id], 'index')) |
---|
[6622] | 399 | return |
---|
| 400 | |
---|
[14293] | 401 | @action(_('Create graduated student'), style='primary') |
---|
| 402 | def addGraduatedStudent(self, **data): |
---|
| 403 | student = createObject(u'waeup.Student') |
---|
| 404 | self.applyData(student, **data) |
---|
| 405 | self.context.addStudent(student) |
---|
| 406 | IWorkflowState(student).setState(GRADUATED) |
---|
[15417] | 407 | notify(grok.ObjectModifiedEvent(student)) |
---|
[15418] | 408 | history = IObjectHistory(student) |
---|
[15419] | 409 | history.addMessage("State 'graduated' set") |
---|
[15418] | 410 | self.flash(_('Graduated student record created.')) |
---|
[14293] | 411 | self.redirect(self.url(self.context[student.student_id], 'index')) |
---|
| 412 | return |
---|
| 413 | |
---|
[9338] | 414 | class LoginAsStudentStep1(KofaEditFormPage): |
---|
| 415 | """ View to temporarily set a student password. |
---|
| 416 | """ |
---|
| 417 | grok.context(IStudent) |
---|
| 418 | grok.name('loginasstep1') |
---|
| 419 | grok.require('waeup.loginAsStudent') |
---|
| 420 | grok.template('loginasstep1') |
---|
| 421 | pnav = 4 |
---|
| 422 | |
---|
[15609] | 423 | def update(self): |
---|
| 424 | super(LoginAsStudentStep1, self).update() |
---|
| 425 | kofa_utils = getUtility(IKofaUtils) |
---|
| 426 | self.temp_password_minutes = kofa_utils.TEMP_PASSWORD_MINUTES |
---|
| 427 | return |
---|
| 428 | |
---|
[9338] | 429 | def label(self): |
---|
| 430 | return _(u'Set temporary password for ${a}', |
---|
| 431 | mapping = {'a':self.context.display_fullname}) |
---|
| 432 | |
---|
| 433 | @action('Set password now', style='primary') |
---|
| 434 | def setPassword(self, *args, **data): |
---|
| 435 | kofa_utils = getUtility(IKofaUtils) |
---|
| 436 | password = kofa_utils.genPassword() |
---|
| 437 | self.context.setTempPassword(self.request.principal.id, password) |
---|
| 438 | self.context.writeLogMessage( |
---|
| 439 | self, 'temp_password generated: %s' % password) |
---|
| 440 | args = {'password':password} |
---|
| 441 | self.redirect(self.url(self.context) + |
---|
| 442 | '/loginasstep2?%s' % urlencode(args)) |
---|
| 443 | return |
---|
| 444 | |
---|
| 445 | class LoginAsStudentStep2(KofaPage): |
---|
| 446 | """ View to temporarily login as student with a temporary password. |
---|
| 447 | """ |
---|
| 448 | grok.context(IStudent) |
---|
| 449 | grok.name('loginasstep2') |
---|
| 450 | grok.require('waeup.Public') |
---|
| 451 | grok.template('loginasstep2') |
---|
| 452 | login_button = _('Login now') |
---|
| 453 | pnav = 4 |
---|
| 454 | |
---|
| 455 | def label(self): |
---|
| 456 | return _(u'Login as ${a}', |
---|
| 457 | mapping = {'a':self.context.student_id}) |
---|
| 458 | |
---|
| 459 | def update(self, SUBMIT=None, password=None): |
---|
| 460 | self.password = password |
---|
| 461 | if SUBMIT is not None: |
---|
| 462 | self.flash(_('You successfully logged in as student.')) |
---|
| 463 | self.redirect(self.url(self.context)) |
---|
| 464 | return |
---|
| 465 | |
---|
[7819] | 466 | class StudentBaseDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 467 | """ Page to display student base data |
---|
| 468 | """ |
---|
[6622] | 469 | grok.context(IStudent) |
---|
| 470 | grok.name('index') |
---|
[6660] | 471 | grok.require('waeup.viewStudent') |
---|
[6695] | 472 | grok.template('basepage') |
---|
[9702] | 473 | form_fields = grok.AutoFields(IStudentBase).omit( |
---|
[13711] | 474 | 'password', 'suspended', 'suspended_comment', 'flash_notice') |
---|
[6642] | 475 | pnav = 4 |
---|
[6622] | 476 | |
---|
| 477 | @property |
---|
| 478 | def label(self): |
---|
[8983] | 479 | if self.context.suspended: |
---|
[9124] | 480 | return _('${a}: Base Data (account deactivated)', |
---|
[8983] | 481 | mapping = {'a':self.context.display_fullname}) |
---|
| 482 | return _('${a}: Base Data', |
---|
[7723] | 483 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 484 | |
---|
[6699] | 485 | @property |
---|
| 486 | def hasPassword(self): |
---|
| 487 | if self.context.password: |
---|
[7723] | 488 | return _('set') |
---|
| 489 | return _('unset') |
---|
[6699] | 490 | |
---|
[13711] | 491 | def update(self): |
---|
| 492 | if self.context.flash_notice: |
---|
| 493 | self.flash(self.context.flash_notice, type="warning") |
---|
| 494 | super(StudentBaseDisplayFormPage, self).update() |
---|
| 495 | return |
---|
| 496 | |
---|
[9141] | 497 | class StudentBasePDFFormPage(KofaDisplayFormPage): |
---|
| 498 | """ Page to display student base data in pdf files. |
---|
| 499 | """ |
---|
| 500 | |
---|
[10250] | 501 | def __init__(self, context, request, omit_fields=()): |
---|
[9374] | 502 | self.omit_fields = omit_fields |
---|
| 503 | super(StudentBasePDFFormPage, self).__init__(context, request) |
---|
| 504 | |
---|
| 505 | @property |
---|
| 506 | def form_fields(self): |
---|
| 507 | form_fields = grok.AutoFields(IStudentBase) |
---|
| 508 | for field in self.omit_fields: |
---|
| 509 | form_fields = form_fields.omit(field) |
---|
| 510 | return form_fields |
---|
| 511 | |
---|
[13055] | 512 | class ContactStudentFormPage(ContactAdminFormPage): |
---|
[7229] | 513 | grok.context(IStudent) |
---|
[7230] | 514 | grok.name('contactstudent') |
---|
[7275] | 515 | grok.require('waeup.viewStudent') |
---|
[7229] | 516 | pnav = 4 |
---|
| 517 | form_fields = grok.AutoFields(IContactForm).select('subject', 'body') |
---|
| 518 | |
---|
[9484] | 519 | def update(self, subject=u'', body=u''): |
---|
[13055] | 520 | super(ContactStudentFormPage, self).update() |
---|
[7275] | 521 | self.form_fields.get('subject').field.default = subject |
---|
[9484] | 522 | self.form_fields.get('body').field.default = body |
---|
[9857] | 523 | return |
---|
[7275] | 524 | |
---|
[7229] | 525 | def label(self): |
---|
[7723] | 526 | return _(u'Send message to ${a}', |
---|
| 527 | mapping = {'a':self.context.display_fullname}) |
---|
[7229] | 528 | |
---|
[7459] | 529 | @action('Send message now', style='primary') |
---|
[7229] | 530 | def send(self, *args, **data): |
---|
[7234] | 531 | try: |
---|
[7403] | 532 | email = self.request.principal.email |
---|
[7234] | 533 | except AttributeError: |
---|
[7403] | 534 | email = self.config.email_admin |
---|
| 535 | usertype = getattr(self.request.principal, |
---|
| 536 | 'user_type', 'system').title() |
---|
[7819] | 537 | kofa_utils = getUtility(IKofaUtils) |
---|
[7811] | 538 | success = kofa_utils.sendContactForm( |
---|
[7403] | 539 | self.request.principal.title,email, |
---|
| 540 | self.context.display_fullname,self.context.email, |
---|
| 541 | self.request.principal.id,usertype, |
---|
| 542 | self.config.name, |
---|
| 543 | data['body'],data['subject']) |
---|
[7229] | 544 | if success: |
---|
[7723] | 545 | self.flash(_('Your message has been sent.')) |
---|
[7229] | 546 | else: |
---|
[11254] | 547 | self.flash(_('An smtp server error occurred.'), type="danger") |
---|
[7229] | 548 | return |
---|
| 549 | |
---|
[16299] | 550 | class SendBulEmailsFormPage(ContactAdminFormPage): |
---|
| 551 | grok.context(IStudentsContainer) |
---|
| 552 | grok.name('send_bulk_email') |
---|
| 553 | grok.require('waeup.manageStudent') |
---|
| 554 | pnav = 4 |
---|
| 555 | form_fields = grok.AutoFields(IContactForm).select('subject', 'body', 'bcc_to') |
---|
| 556 | label = _('Send bulk email') |
---|
| 557 | |
---|
| 558 | def update(self, bcc_to=u''): |
---|
| 559 | self.form_fields.get('bcc_to').field.default = bcc_to |
---|
| 560 | return |
---|
| 561 | |
---|
| 562 | @action('Send message now', style='primary') |
---|
| 563 | def send(self, *args, **data): |
---|
| 564 | try: |
---|
| 565 | email = self.request.principal.email |
---|
| 566 | except AttributeError: |
---|
| 567 | email = self.config.email_admin |
---|
| 568 | usertype = getattr(self.request.principal, |
---|
| 569 | 'user_type', 'system').title() |
---|
| 570 | kofa_utils = getUtility(IKofaUtils) |
---|
| 571 | success = kofa_utils.sendContactForm( |
---|
| 572 | self.request.principal.title,email, |
---|
| 573 | self.request.principal.title,email, # sent to the sender's address |
---|
| 574 | self.request.principal.id,usertype, |
---|
| 575 | self.config.name, |
---|
| 576 | data['body'],data['subject'], |
---|
[16300] | 577 | eval(data['bcc_to']) |
---|
| 578 | ) |
---|
[16299] | 579 | if success: |
---|
| 580 | self.flash(_('Your message has been sent.')) |
---|
| 581 | else: |
---|
| 582 | self.flash(_('An smtp server error occurred.'), type="danger") |
---|
| 583 | return |
---|
| 584 | |
---|
[13055] | 585 | class ExportPDFAdmissionSlip(UtilityView, grok.View): |
---|
[9191] | 586 | """Deliver a PDF Admission slip. |
---|
| 587 | """ |
---|
| 588 | grok.context(IStudent) |
---|
| 589 | grok.name('admission_slip.pdf') |
---|
| 590 | grok.require('waeup.viewStudent') |
---|
| 591 | prefix = 'form' |
---|
| 592 | |
---|
[15757] | 593 | omit_fields = ('date_of_birth', 'current_level') |
---|
[10270] | 594 | |
---|
[9191] | 595 | form_fields = grok.AutoFields(IStudentBase).select('student_id', 'reg_number') |
---|
| 596 | |
---|
[16262] | 597 | |
---|
| 598 | # Can be used for testing. Just replace 'post_text=None' |
---|
| 599 | # by post_text=self.post_text' |
---|
| 600 | post_text = ''' |
---|
| 601 | Conratulations! |
---|
| 602 | |
---|
| 603 | |
---|
| 604 | <img src="${test_signature_img_path}" valign="-20" height="38" width="86" /> |
---|
| 605 | |
---|
| 606 | |
---|
| 607 | John Tester |
---|
| 608 | - Registrar - |
---|
| 609 | ''' |
---|
| 610 | |
---|
[9191] | 611 | @property |
---|
| 612 | def label(self): |
---|
| 613 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 614 | return translate(_('Admission Letter of'), |
---|
| 615 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 616 | + ' %s' % self.context.display_fullname |
---|
| 617 | |
---|
| 618 | def render(self): |
---|
| 619 | students_utils = getUtility(IStudentsUtils) |
---|
[15880] | 620 | letterhead_path = os.path.join( |
---|
| 621 | os.path.dirname(__file__), 'static', 'letterhead_admission.jpg') |
---|
| 622 | if not os.path.exists(letterhead_path): |
---|
| 623 | letterhead_path = None |
---|
[9191] | 624 | return students_utils.renderPDFAdmissionLetter(self, |
---|
[15880] | 625 | self.context.student, omit_fields=self.omit_fields, |
---|
[16262] | 626 | letterhead_path=letterhead_path, post_text=None) |
---|
[9191] | 627 | |
---|
[7819] | 628 | class StudentBaseManageFormPage(KofaEditFormPage): |
---|
[7133] | 629 | """ View to manage student base data |
---|
[6631] | 630 | """ |
---|
| 631 | grok.context(IStudent) |
---|
[7133] | 632 | grok.name('manage_base') |
---|
[7136] | 633 | grok.require('waeup.manageStudent') |
---|
[9124] | 634 | form_fields = grok.AutoFields(IStudentBase).omit( |
---|
| 635 | 'student_id', 'adm_code', 'suspended') |
---|
[6695] | 636 | grok.template('basemanagepage') |
---|
[7723] | 637 | label = _('Manage base data') |
---|
[6642] | 638 | pnav = 4 |
---|
[6631] | 639 | |
---|
[6638] | 640 | def update(self): |
---|
| 641 | super(StudentBaseManageFormPage, self).update() |
---|
| 642 | self.wf_info = IWorkflowInfo(self.context) |
---|
| 643 | return |
---|
| 644 | |
---|
[7723] | 645 | @action(_('Save'), style='primary') |
---|
[6638] | 646 | def save(self, **data): |
---|
[6701] | 647 | form = self.request.form |
---|
[6790] | 648 | password = form.get('password', None) |
---|
| 649 | password_ctl = form.get('control_password', None) |
---|
| 650 | if password: |
---|
[7147] | 651 | validator = getUtility(IPasswordValidator) |
---|
| 652 | errors = validator.validate_password(password, password_ctl) |
---|
| 653 | if errors: |
---|
[11254] | 654 | self.flash( ' '.join(errors), type="danger") |
---|
[7147] | 655 | return |
---|
| 656 | changed_fields = self.applyData(self.context, **data) |
---|
[6771] | 657 | # Turn list of lists into single list |
---|
| 658 | if changed_fields: |
---|
| 659 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7147] | 660 | else: |
---|
| 661 | changed_fields = [] |
---|
| 662 | if password: |
---|
[9273] | 663 | # Now we know that the form has no errors and can set password |
---|
[7147] | 664 | IUserAccount(self.context).setPassword(password) |
---|
| 665 | changed_fields.append('password') |
---|
| 666 | fields_string = ' + '.join(changed_fields) |
---|
[7723] | 667 | self.flash(_('Form has been saved.')) |
---|
[6644] | 668 | if fields_string: |
---|
[8735] | 669 | self.context.writeLogMessage(self, 'saved: % s' % fields_string) |
---|
[6638] | 670 | return |
---|
| 671 | |
---|
[9273] | 672 | class StudentTriggerTransitionFormPage(KofaEditFormPage): |
---|
[12048] | 673 | """ View to trigger student workflow transitions |
---|
[9273] | 674 | """ |
---|
| 675 | grok.context(IStudent) |
---|
| 676 | grok.name('trigtrans') |
---|
| 677 | grok.require('waeup.triggerTransition') |
---|
| 678 | grok.template('trigtrans') |
---|
| 679 | label = _('Trigger registration transition') |
---|
| 680 | pnav = 4 |
---|
| 681 | |
---|
| 682 | def getTransitions(self): |
---|
| 683 | """Return a list of dicts of allowed transition ids and titles. |
---|
| 684 | |
---|
| 685 | Each list entry provides keys ``name`` and ``title`` for |
---|
| 686 | internal name and (human readable) title of a single |
---|
| 687 | transition. |
---|
| 688 | """ |
---|
| 689 | wf_info = IWorkflowInfo(self.context) |
---|
| 690 | allowed_transitions = [t for t in wf_info.getManualTransitions() |
---|
| 691 | if not t[0].startswith('pay')] |
---|
[10155] | 692 | if self.context.is_postgrad and not self.context.is_special_postgrad: |
---|
[9273] | 693 | allowed_transitions = [t for t in allowed_transitions |
---|
| 694 | if not t[0] in FORBIDDEN_POSTGRAD_TRANS] |
---|
| 695 | return [dict(name='', title=_('No transition'))] +[ |
---|
| 696 | dict(name=x, title=y) for x, y in allowed_transitions] |
---|
| 697 | |
---|
| 698 | @action(_('Save'), style='primary') |
---|
| 699 | def save(self, **data): |
---|
| 700 | form = self.request.form |
---|
[9701] | 701 | if 'transition' in form and form['transition']: |
---|
[9273] | 702 | transition_id = form['transition'] |
---|
| 703 | wf_info = IWorkflowInfo(self.context) |
---|
| 704 | wf_info.fireTransition(transition_id) |
---|
| 705 | return |
---|
| 706 | |
---|
[13055] | 707 | class StudentActivateView(UtilityView, grok.View): |
---|
[9124] | 708 | """ Activate student account |
---|
| 709 | """ |
---|
| 710 | grok.context(IStudent) |
---|
| 711 | grok.name('activate') |
---|
| 712 | grok.require('waeup.manageStudent') |
---|
| 713 | |
---|
| 714 | def update(self): |
---|
| 715 | self.context.suspended = False |
---|
| 716 | self.context.writeLogMessage(self, 'account activated') |
---|
| 717 | history = IObjectHistory(self.context) |
---|
| 718 | history.addMessage('Student account activated') |
---|
| 719 | self.flash(_('Student account has been activated.')) |
---|
| 720 | self.redirect(self.url(self.context)) |
---|
| 721 | return |
---|
| 722 | |
---|
| 723 | def render(self): |
---|
| 724 | return |
---|
| 725 | |
---|
[13055] | 726 | class StudentDeactivateView(UtilityView, grok.View): |
---|
[9124] | 727 | """ Deactivate student account |
---|
| 728 | """ |
---|
| 729 | grok.context(IStudent) |
---|
| 730 | grok.name('deactivate') |
---|
| 731 | grok.require('waeup.manageStudent') |
---|
| 732 | |
---|
| 733 | def update(self): |
---|
| 734 | self.context.suspended = True |
---|
| 735 | self.context.writeLogMessage(self, 'account deactivated') |
---|
| 736 | history = IObjectHistory(self.context) |
---|
| 737 | history.addMessage('Student account deactivated') |
---|
| 738 | self.flash(_('Student account has been deactivated.')) |
---|
| 739 | self.redirect(self.url(self.context)) |
---|
| 740 | return |
---|
| 741 | |
---|
| 742 | def render(self): |
---|
| 743 | return |
---|
| 744 | |
---|
[7819] | 745 | class StudentClearanceDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 746 | """ Page to display student clearance data |
---|
| 747 | """ |
---|
| 748 | grok.context(IStudent) |
---|
| 749 | grok.name('view_clearance') |
---|
[6660] | 750 | grok.require('waeup.viewStudent') |
---|
[6642] | 751 | pnav = 4 |
---|
[6631] | 752 | |
---|
| 753 | @property |
---|
[8099] | 754 | def separators(self): |
---|
| 755 | return getUtility(IStudentsUtils).SEPARATORS_DICT |
---|
| 756 | |
---|
| 757 | @property |
---|
[7993] | 758 | def form_fields(self): |
---|
[8472] | 759 | if self.context.is_postgrad: |
---|
[13103] | 760 | form_fields = grok.AutoFields(IPGStudentClearance) |
---|
[7993] | 761 | else: |
---|
[13103] | 762 | form_fields = grok.AutoFields(IUGStudentClearance) |
---|
[9486] | 763 | if not getattr(self.context, 'officer_comment'): |
---|
| 764 | form_fields = form_fields.omit('officer_comment') |
---|
[9484] | 765 | else: |
---|
[9486] | 766 | form_fields['officer_comment'].custom_widget = BytesDisplayWidget |
---|
[7993] | 767 | return form_fields |
---|
| 768 | |
---|
| 769 | @property |
---|
[6631] | 770 | def label(self): |
---|
[7723] | 771 | return _('${a}: Clearance Data', |
---|
| 772 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 773 | |
---|
[16251] | 774 | class ExportPDFStudyCourseBaseDataSlip(UtilityView, grok.View): |
---|
[16086] | 775 | """Deliver a PDF base and studycourse data slip. |
---|
| 776 | """ |
---|
| 777 | grok.context(IStudentStudyCourse) |
---|
[16251] | 778 | grok.name('studycourse_slip.pdf') |
---|
[16086] | 779 | grok.require('waeup.viewStudent') |
---|
| 780 | prefix = 'form' |
---|
| 781 | |
---|
| 782 | omit_fields = ( |
---|
| 783 | 'suspended', |
---|
| 784 | 'adm_code', 'suspended_comment', |
---|
| 785 | 'current_level', |
---|
| 786 | 'flash_notice', 'entry_session', |
---|
| 787 | 'parents_email') |
---|
| 788 | |
---|
| 789 | form_fields = grok.AutoFields(IStudentStudyCourse).omit('certificate') |
---|
| 790 | |
---|
| 791 | @property |
---|
| 792 | def title(self): |
---|
| 793 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 794 | return translate(_('Current Study Course Data'), 'waeup.kofa', |
---|
| 795 | target_language=portal_language) |
---|
| 796 | |
---|
| 797 | @property |
---|
| 798 | def label(self): |
---|
| 799 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[16286] | 800 | return translate(_('Study Course Data of'), |
---|
[16086] | 801 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 802 | + ' %s' % self.context.student.display_fullname |
---|
| 803 | |
---|
| 804 | def render(self): |
---|
| 805 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 806 | self.request, self.omit_fields) |
---|
| 807 | students_utils = getUtility(IStudentsUtils) |
---|
| 808 | return students_utils.renderPDF( |
---|
| 809 | self, 'basedata_slip.pdf', |
---|
| 810 | self.context.student, studentview, |
---|
| 811 | omit_fields=self.omit_fields) |
---|
| 812 | |
---|
[16251] | 813 | class ExportPDFPersonalDataSlip(UtilityView, grok.View): |
---|
| 814 | """Deliver a PDF base and personal data slip. |
---|
| 815 | """ |
---|
| 816 | grok.context(IStudent) |
---|
| 817 | grok.name('personal_slip.pdf') |
---|
| 818 | grok.require('waeup.viewStudent') |
---|
| 819 | prefix = 'form' |
---|
| 820 | |
---|
| 821 | omit_fields = ( |
---|
| 822 | 'suspended', |
---|
| 823 | 'adm_code', 'suspended_comment', |
---|
| 824 | 'current_level', |
---|
| 825 | 'flash_notice', 'entry_session', |
---|
| 826 | 'parents_email') |
---|
| 827 | |
---|
| 828 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
| 829 | |
---|
| 830 | @property |
---|
| 831 | def title(self): |
---|
| 832 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 833 | return translate(_('Personal Data'), 'waeup.kofa', |
---|
| 834 | target_language=portal_language) |
---|
| 835 | |
---|
| 836 | @property |
---|
| 837 | def label(self): |
---|
| 838 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 839 | return translate(_('Personal Data of'), |
---|
| 840 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 841 | + ' %s' % self.context.student.display_fullname |
---|
| 842 | |
---|
| 843 | def render(self): |
---|
| 844 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 845 | self.request, self.omit_fields) |
---|
| 846 | students_utils = getUtility(IStudentsUtils) |
---|
| 847 | return students_utils.renderPDF( |
---|
| 848 | self, 'personal_slip.pdf', |
---|
| 849 | self.context.student, studentview, |
---|
| 850 | omit_fields=self.omit_fields) |
---|
| 851 | |
---|
| 852 | |
---|
[13056] | 853 | class ExportPDFClearanceSlip(grok.View): |
---|
[7277] | 854 | """Deliver a PDF slip of the context. |
---|
| 855 | """ |
---|
| 856 | grok.context(IStudent) |
---|
[9452] | 857 | grok.name('clearance_slip.pdf') |
---|
[7277] | 858 | grok.require('waeup.viewStudent') |
---|
| 859 | prefix = 'form' |
---|
[9702] | 860 | omit_fields = ( |
---|
[10694] | 861 | 'suspended', 'phone', |
---|
[10256] | 862 | 'adm_code', 'suspended_comment', |
---|
[13711] | 863 | 'date_of_birth', 'current_level', |
---|
| 864 | 'flash_notice') |
---|
[7277] | 865 | |
---|
| 866 | @property |
---|
[7993] | 867 | def form_fields(self): |
---|
[8472] | 868 | if self.context.is_postgrad: |
---|
[13103] | 869 | form_fields = grok.AutoFields(IPGStudentClearance) |
---|
[7993] | 870 | else: |
---|
[13103] | 871 | form_fields = grok.AutoFields(IUGStudentClearance) |
---|
[9486] | 872 | if not getattr(self.context, 'officer_comment'): |
---|
| 873 | form_fields = form_fields.omit('officer_comment') |
---|
[7993] | 874 | return form_fields |
---|
| 875 | |
---|
| 876 | @property |
---|
[7723] | 877 | def title(self): |
---|
[7819] | 878 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 879 | return translate(_('Clearance Data'), 'waeup.kofa', |
---|
[7723] | 880 | target_language=portal_language) |
---|
| 881 | |
---|
| 882 | @property |
---|
[7277] | 883 | def label(self): |
---|
[7819] | 884 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[9026] | 885 | return translate(_('Clearance Slip of'), |
---|
[7811] | 886 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7723] | 887 | + ' %s' % self.context.display_fullname |
---|
[7277] | 888 | |
---|
[9969] | 889 | # XXX: not used in waeup.kofa and thus not tested |
---|
[9010] | 890 | def _signatures(self): |
---|
[9548] | 891 | isStudent = getattr( |
---|
| 892 | self.request.principal, 'user_type', None) == 'student' |
---|
| 893 | if not isStudent and self.context.state in (CLEARED, ): |
---|
[9969] | 894 | return ([_('Student Signature')], |
---|
| 895 | [_('Clearance Officer Signature')]) |
---|
[9010] | 896 | return |
---|
| 897 | |
---|
[9555] | 898 | def _sigsInFooter(self): |
---|
[9548] | 899 | isStudent = getattr( |
---|
| 900 | self.request.principal, 'user_type', None) == 'student' |
---|
| 901 | if not isStudent and self.context.state in (CLEARED, ): |
---|
[9555] | 902 | return (_('Date, Student Signature'), |
---|
| 903 | _('Date, Clearance Officer Signature'), |
---|
| 904 | ) |
---|
[9557] | 905 | return () |
---|
[9548] | 906 | |
---|
[7277] | 907 | def render(self): |
---|
[9141] | 908 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 909 | self.request, self.omit_fields) |
---|
[7277] | 910 | students_utils = getUtility(IStudentsUtils) |
---|
| 911 | return students_utils.renderPDF( |
---|
[9452] | 912 | self, 'clearance_slip.pdf', |
---|
[9548] | 913 | self.context.student, studentview, signatures=self._signatures(), |
---|
[10250] | 914 | sigs_in_footer=self._sigsInFooter(), |
---|
| 915 | omit_fields=self.omit_fields) |
---|
[7277] | 916 | |
---|
[7819] | 917 | class StudentClearanceManageFormPage(KofaEditFormPage): |
---|
[8120] | 918 | """ Page to manage student clearance data |
---|
[6631] | 919 | """ |
---|
| 920 | grok.context(IStudent) |
---|
[8119] | 921 | grok.name('manage_clearance') |
---|
[7136] | 922 | grok.require('waeup.manageStudent') |
---|
[7134] | 923 | grok.template('clearanceeditpage') |
---|
[7723] | 924 | label = _('Manage clearance data') |
---|
[11567] | 925 | deletion_warning = _('Are you sure?') |
---|
[6642] | 926 | pnav = 4 |
---|
[6650] | 927 | |
---|
[7993] | 928 | @property |
---|
[8099] | 929 | def separators(self): |
---|
| 930 | return getUtility(IStudentsUtils).SEPARATORS_DICT |
---|
| 931 | |
---|
| 932 | @property |
---|
[7993] | 933 | def form_fields(self): |
---|
[8472] | 934 | if self.context.is_postgrad: |
---|
[8977] | 935 | form_fields = grok.AutoFields(IPGStudentClearance).omit('clr_code') |
---|
[7993] | 936 | else: |
---|
[8977] | 937 | form_fields = grok.AutoFields(IUGStudentClearance).omit('clr_code') |
---|
[7993] | 938 | return form_fields |
---|
| 939 | |
---|
[16387] | 940 | @property |
---|
| 941 | def do_not_render_buttons(self): |
---|
| 942 | if self.context.state != CLEARANCE: |
---|
| 943 | return ('Save and request clearance',) |
---|
| 944 | return () |
---|
| 945 | |
---|
[7723] | 946 | @action(_('Save'), style='primary') |
---|
[6695] | 947 | def save(self, **data): |
---|
[6762] | 948 | msave(self, **data) |
---|
[6695] | 949 | return |
---|
| 950 | |
---|
[13055] | 951 | class StudentClearView(UtilityView, grok.View): |
---|
[7158] | 952 | """ Clear student by clearance officer |
---|
| 953 | """ |
---|
| 954 | grok.context(IStudent) |
---|
| 955 | grok.name('clear') |
---|
| 956 | grok.require('waeup.clearStudent') |
---|
| 957 | |
---|
| 958 | def update(self): |
---|
[13028] | 959 | cdm = getUtility(IStudentsUtils).clearance_disabled_message( |
---|
| 960 | self.context) |
---|
[11772] | 961 | if cdm: |
---|
| 962 | self.flash(cdm) |
---|
[9814] | 963 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 964 | return |
---|
[7158] | 965 | if self.context.state == REQUESTED: |
---|
| 966 | IWorkflowInfo(self.context).fireTransition('clear') |
---|
[7723] | 967 | self.flash(_('Student has been cleared.')) |
---|
[7158] | 968 | else: |
---|
[11254] | 969 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
[7158] | 970 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 971 | return |
---|
| 972 | |
---|
| 973 | def render(self): |
---|
| 974 | return |
---|
| 975 | |
---|
[16187] | 976 | class StudentTempClearancePage(KofaEditFormPage): |
---|
| 977 | """ Temporarily clearance by clearance officers. |
---|
| 978 | """ |
---|
| 979 | grok.context(IStudent) |
---|
| 980 | grok.name('temp_clearance') |
---|
| 981 | label = _('Clear student temporarily') |
---|
| 982 | grok.require('waeup.clearStudent') |
---|
| 983 | form_fields = grok.AutoFields( |
---|
| 984 | IUGStudentClearance).select('officer_comment') |
---|
| 985 | |
---|
| 986 | def update(self): |
---|
| 987 | cdm = getUtility(IStudentsUtils).clearance_disabled_message( |
---|
| 988 | self.context) |
---|
| 989 | if cdm: |
---|
| 990 | self.flash(cdm, type="warning") |
---|
| 991 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 992 | return |
---|
| 993 | return super(StudentTempClearancePage, self).update() |
---|
| 994 | |
---|
| 995 | @action(_('Save comment and clear student temporarily now'), style='primary') |
---|
| 996 | def temp_clear(self, **data): |
---|
| 997 | if self.context.state == REQUESTED: |
---|
| 998 | if self.context.officer_comment \ |
---|
| 999 | and self.context.officer_comment.startswith('Temporarily cleared'): |
---|
| 1000 | self.flash( |
---|
| 1001 | _('Not allowed: student has already been ' |
---|
| 1002 | 'temporarily cleared.'), |
---|
| 1003 | type="warning") |
---|
| 1004 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 1005 | return |
---|
| 1006 | if not data['officer_comment']: |
---|
| 1007 | self.flash(_('Please write a comment.'), type="warning") |
---|
| 1008 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 1009 | return |
---|
| 1010 | message = _('Student has been temporarily cleared.') |
---|
| 1011 | self.flash(message) |
---|
| 1012 | else: |
---|
| 1013 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
| 1014 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 1015 | return |
---|
| 1016 | user = get_current_principal() |
---|
| 1017 | if user is None: |
---|
| 1018 | usertitle = 'system' |
---|
| 1019 | else: |
---|
| 1020 | usertitle = getattr(user, 'public_name', None) |
---|
| 1021 | if not usertitle: |
---|
| 1022 | usertitle = user.title |
---|
| 1023 | comment = data['officer_comment'] |
---|
| 1024 | data['officer_comment'] = translate( |
---|
[16194] | 1025 | _('Temporarily cleared by ${a}. Officer\'s comment:\n${b}', |
---|
[16187] | 1026 | mapping = {'a':usertitle, 'b':comment})) |
---|
| 1027 | self.applyData(self.context, **data) |
---|
| 1028 | self.context.writeLogMessage( |
---|
| 1029 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 1030 | args = {'subject':'You have been temporarily cleared.', 'body':comment} |
---|
| 1031 | self.redirect(self.url(self.context) + |
---|
| 1032 | '/contactstudent?%s' % urlencode(args)) |
---|
| 1033 | return |
---|
| 1034 | |
---|
[9484] | 1035 | class StudentRejectClearancePage(KofaEditFormPage): |
---|
[13028] | 1036 | """ Reject clearance by clearance officers. |
---|
[7158] | 1037 | """ |
---|
| 1038 | grok.context(IStudent) |
---|
| 1039 | grok.name('reject_clearance') |
---|
[9484] | 1040 | label = _('Reject clearance') |
---|
[7158] | 1041 | grok.require('waeup.clearStudent') |
---|
[9484] | 1042 | form_fields = grok.AutoFields( |
---|
[9486] | 1043 | IUGStudentClearance).select('officer_comment') |
---|
[7158] | 1044 | |
---|
[9814] | 1045 | def update(self): |
---|
[13028] | 1046 | cdm = getUtility(IStudentsUtils).clearance_disabled_message( |
---|
| 1047 | self.context) |
---|
[11772] | 1048 | if cdm: |
---|
| 1049 | self.flash(cdm, type="warning") |
---|
[9814] | 1050 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 1051 | return |
---|
| 1052 | return super(StudentRejectClearancePage, self).update() |
---|
| 1053 | |
---|
[9484] | 1054 | @action(_('Save comment and reject clearance now'), style='primary') |
---|
| 1055 | def reject(self, **data): |
---|
[7158] | 1056 | if self.context.state == CLEARED: |
---|
| 1057 | IWorkflowInfo(self.context).fireTransition('reset4') |
---|
[7723] | 1058 | message = _('Clearance has been annulled.') |
---|
[11254] | 1059 | self.flash(message, type="warning") |
---|
[7158] | 1060 | elif self.context.state == REQUESTED: |
---|
| 1061 | IWorkflowInfo(self.context).fireTransition('reset3') |
---|
[7723] | 1062 | message = _('Clearance request has been rejected.') |
---|
[11254] | 1063 | self.flash(message, type="warning") |
---|
[7158] | 1064 | else: |
---|
[11254] | 1065 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
[7334] | 1066 | self.redirect(self.url(self.context,'view_clearance')) |
---|
[7275] | 1067 | return |
---|
[9484] | 1068 | self.applyData(self.context, **data) |
---|
[9486] | 1069 | comment = data['officer_comment'] |
---|
[9556] | 1070 | if comment: |
---|
| 1071 | self.context.writeLogMessage( |
---|
| 1072 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 1073 | args = {'subject':message, 'body':comment} |
---|
| 1074 | else: |
---|
| 1075 | args = {'subject':message,} |
---|
[7275] | 1076 | self.redirect(self.url(self.context) + |
---|
| 1077 | '/contactstudent?%s' % urlencode(args)) |
---|
[7158] | 1078 | return |
---|
| 1079 | |
---|
| 1080 | |
---|
[7819] | 1081 | class StudentPersonalDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 1082 | """ Page to display student personal data |
---|
| 1083 | """ |
---|
| 1084 | grok.context(IStudent) |
---|
| 1085 | grok.name('view_personal') |
---|
[6660] | 1086 | grok.require('waeup.viewStudent') |
---|
[6631] | 1087 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
[7386] | 1088 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
[9543] | 1089 | form_fields[ |
---|
| 1090 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6642] | 1091 | pnav = 4 |
---|
[6631] | 1092 | |
---|
| 1093 | @property |
---|
| 1094 | def label(self): |
---|
[7723] | 1095 | return _('${a}: Personal Data', |
---|
| 1096 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 1097 | |
---|
[8903] | 1098 | class StudentPersonalManageFormPage(KofaEditFormPage): |
---|
| 1099 | """ Page to manage personal data |
---|
[6631] | 1100 | """ |
---|
| 1101 | grok.context(IStudent) |
---|
[8903] | 1102 | grok.name('manage_personal') |
---|
| 1103 | grok.require('waeup.manageStudent') |
---|
[9553] | 1104 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
| 1105 | form_fields['personal_updated'].for_display = True |
---|
[9571] | 1106 | form_fields[ |
---|
| 1107 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[8903] | 1108 | label = _('Manage personal data') |
---|
[6642] | 1109 | pnav = 4 |
---|
[6631] | 1110 | |
---|
[7723] | 1111 | @action(_('Save'), style='primary') |
---|
[6762] | 1112 | def save(self, **data): |
---|
| 1113 | msave(self, **data) |
---|
| 1114 | return |
---|
| 1115 | |
---|
[9543] | 1116 | class StudentPersonalEditFormPage(KofaEditFormPage): |
---|
[8903] | 1117 | """ Page to edit personal data |
---|
| 1118 | """ |
---|
[9543] | 1119 | grok.context(IStudent) |
---|
[8903] | 1120 | grok.name('edit_personal') |
---|
| 1121 | grok.require('waeup.handleStudent') |
---|
[9563] | 1122 | form_fields = grok.AutoFields(IStudentPersonalEdit).omit('personal_updated') |
---|
[8903] | 1123 | label = _('Edit personal data') |
---|
| 1124 | pnav = 4 |
---|
| 1125 | |
---|
[9543] | 1126 | @action(_('Save/Confirm'), style='primary') |
---|
| 1127 | def save(self, **data): |
---|
| 1128 | msave(self, **data) |
---|
[9569] | 1129 | self.context.personal_updated = datetime.utcnow() |
---|
[9543] | 1130 | return |
---|
| 1131 | |
---|
[7819] | 1132 | class StudyCourseDisplayFormPage(KofaDisplayFormPage): |
---|
[6635] | 1133 | """ Page to display the student study course data |
---|
| 1134 | """ |
---|
| 1135 | grok.context(IStudentStudyCourse) |
---|
| 1136 | grok.name('index') |
---|
[6660] | 1137 | grok.require('waeup.viewStudent') |
---|
[6775] | 1138 | grok.template('studycoursepage') |
---|
[6642] | 1139 | pnav = 4 |
---|
[6635] | 1140 | |
---|
| 1141 | @property |
---|
[8972] | 1142 | def form_fields(self): |
---|
| 1143 | if self.context.is_postgrad: |
---|
| 1144 | form_fields = grok.AutoFields(IStudentStudyCourse).omit( |
---|
[9723] | 1145 | 'previous_verdict') |
---|
[8972] | 1146 | else: |
---|
| 1147 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 1148 | return form_fields |
---|
| 1149 | |
---|
| 1150 | @property |
---|
[6635] | 1151 | def label(self): |
---|
[9140] | 1152 | if self.context.is_current: |
---|
| 1153 | return _('${a}: Study Course', |
---|
| 1154 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
| 1155 | else: |
---|
| 1156 | return _('${a}: Previous Study Course', |
---|
| 1157 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6635] | 1158 | |
---|
[6912] | 1159 | @property |
---|
| 1160 | def current_mode(self): |
---|
[7641] | 1161 | if self.context.certificate is not None: |
---|
[7841] | 1162 | studymodes_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
[7681] | 1163 | return studymodes_dict[self.context.certificate.study_mode] |
---|
[7171] | 1164 | return |
---|
[7642] | 1165 | |
---|
[7171] | 1166 | @property |
---|
| 1167 | def department(self): |
---|
[15063] | 1168 | try: |
---|
| 1169 | if self.context.certificate is not None: |
---|
| 1170 | return self.context.certificate.__parent__.__parent__ |
---|
| 1171 | except AttributeError: |
---|
| 1172 | # handle_certificate_removed does only clear |
---|
| 1173 | # studycourses with certificate code 'studycourse' but not |
---|
[15066] | 1174 | # 'studycourse_1' or 'studycourse_2'. These certificates do |
---|
[15063] | 1175 | # still exist but have no parents. |
---|
| 1176 | pass |
---|
[7171] | 1177 | return |
---|
[6912] | 1178 | |
---|
[7171] | 1179 | @property |
---|
| 1180 | def faculty(self): |
---|
[15063] | 1181 | try: |
---|
| 1182 | if self.context.certificate is not None: |
---|
| 1183 | return self.context.certificate.__parent__.__parent__.__parent__ |
---|
| 1184 | except AttributeError: |
---|
| 1185 | # handle_certificate_removed does only clear |
---|
| 1186 | # studycourses with certificate code 'studycourse' but not |
---|
[15066] | 1187 | # 'studycourse_1' or 'studycourse_2'. These certificates do |
---|
[15063] | 1188 | # still exist but have no parents. |
---|
| 1189 | pass |
---|
[7171] | 1190 | return |
---|
| 1191 | |
---|
[9140] | 1192 | @property |
---|
| 1193 | def prev_studycourses(self): |
---|
| 1194 | if self.context.is_current: |
---|
| 1195 | if self.context.__parent__.get('studycourse_2', None) is not None: |
---|
| 1196 | return ( |
---|
| 1197 | {'href':self.url(self.context.student) + '/studycourse_1', |
---|
| 1198 | 'title':_('First Study Course, ')}, |
---|
| 1199 | {'href':self.url(self.context.student) + '/studycourse_2', |
---|
| 1200 | 'title':_('Second Study Course')} |
---|
| 1201 | ) |
---|
| 1202 | if self.context.__parent__.get('studycourse_1', None) is not None: |
---|
| 1203 | return ( |
---|
| 1204 | {'href':self.url(self.context.student) + '/studycourse_1', |
---|
| 1205 | 'title':_('First Study Course')}, |
---|
| 1206 | ) |
---|
| 1207 | return |
---|
| 1208 | |
---|
[7819] | 1209 | class StudyCourseManageFormPage(KofaEditFormPage): |
---|
[6649] | 1210 | """ Page to edit the student study course data |
---|
| 1211 | """ |
---|
| 1212 | grok.context(IStudentStudyCourse) |
---|
[6775] | 1213 | grok.name('manage') |
---|
[7136] | 1214 | grok.require('waeup.manageStudent') |
---|
[6775] | 1215 | grok.template('studycoursemanagepage') |
---|
[7723] | 1216 | label = _('Manage study course') |
---|
[6649] | 1217 | pnav = 4 |
---|
[7723] | 1218 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 1219 | tabtwoactions = [_('Remove selected levels'),_('Cancel')] |
---|
| 1220 | tabthreeactions = [_('Add study level')] |
---|
[6649] | 1221 | |
---|
[8972] | 1222 | @property |
---|
| 1223 | def form_fields(self): |
---|
| 1224 | if self.context.is_postgrad: |
---|
| 1225 | form_fields = grok.AutoFields(IStudentStudyCourse).omit( |
---|
[9723] | 1226 | 'previous_verdict') |
---|
[8972] | 1227 | else: |
---|
| 1228 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 1229 | return form_fields |
---|
| 1230 | |
---|
[6775] | 1231 | def update(self): |
---|
[15163] | 1232 | if not self.context.is_current \ |
---|
| 1233 | or self.context.student.studycourse_locked: |
---|
[9139] | 1234 | emit_lock_message(self) |
---|
| 1235 | return |
---|
[6775] | 1236 | super(StudyCourseManageFormPage, self).update() |
---|
[7490] | 1237 | return |
---|
[6775] | 1238 | |
---|
[7723] | 1239 | @action(_('Save'), style='primary') |
---|
[6761] | 1240 | def save(self, **data): |
---|
[8099] | 1241 | try: |
---|
| 1242 | msave(self, **data) |
---|
| 1243 | except ConstraintNotSatisfied: |
---|
| 1244 | # The selected level might not exist in certificate |
---|
[11254] | 1245 | self.flash(_('Current level not available for certificate.'), |
---|
| 1246 | type="warning") |
---|
[8099] | 1247 | return |
---|
[8081] | 1248 | notify(grok.ObjectModifiedEvent(self.context.__parent__)) |
---|
[6761] | 1249 | return |
---|
| 1250 | |
---|
[6775] | 1251 | @property |
---|
[10266] | 1252 | def level_dicts(self): |
---|
[6775] | 1253 | studylevelsource = StudyLevelSource().factory |
---|
| 1254 | for code in studylevelsource.getValues(self.context): |
---|
| 1255 | title = studylevelsource.getTitle(self.context, code) |
---|
| 1256 | yield(dict(code=code, title=title)) |
---|
| 1257 | |
---|
[9437] | 1258 | @property |
---|
[10266] | 1259 | def session_dicts(self): |
---|
[9437] | 1260 | yield(dict(code='', title='--')) |
---|
| 1261 | for item in academic_sessions(): |
---|
| 1262 | code = item[1] |
---|
| 1263 | title = item[0] |
---|
| 1264 | yield(dict(code=code, title=title)) |
---|
| 1265 | |
---|
[11254] | 1266 | @action(_('Add study level'), style='primary') |
---|
[6774] | 1267 | def addStudyLevel(self, **data): |
---|
[6775] | 1268 | level_code = self.request.form.get('addlevel', None) |
---|
[9437] | 1269 | level_session = self.request.form.get('level_session', None) |
---|
[15203] | 1270 | if not level_session and not level_code == '0': |
---|
[11254] | 1271 | self.flash(_('You must select a session for the level.'), |
---|
| 1272 | type="warning") |
---|
| 1273 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[9437] | 1274 | return |
---|
[15203] | 1275 | if level_session and level_code == '0': |
---|
| 1276 | self.flash(_('Level zero must not be assigned a session.'), |
---|
| 1277 | type="warning") |
---|
| 1278 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
| 1279 | return |
---|
[8323] | 1280 | studylevel = createObject(u'waeup.StudentStudyLevel') |
---|
[6775] | 1281 | studylevel.level = int(level_code) |
---|
[15203] | 1282 | if level_code != '0': |
---|
| 1283 | studylevel.level_session = int(level_session) |
---|
[6775] | 1284 | try: |
---|
[6782] | 1285 | self.context.addStudentStudyLevel( |
---|
| 1286 | self.context.certificate,studylevel) |
---|
[7723] | 1287 | self.flash(_('Study level has been added.')) |
---|
[6775] | 1288 | except KeyError: |
---|
[11254] | 1289 | self.flash(_('This level exists.'), type="warning") |
---|
| 1290 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6774] | 1291 | return |
---|
| 1292 | |
---|
[7723] | 1293 | @jsaction(_('Remove selected levels')) |
---|
[6775] | 1294 | def delStudyLevels(self, **data): |
---|
| 1295 | form = self.request.form |
---|
[9701] | 1296 | if 'val_id' in form: |
---|
[6775] | 1297 | child_id = form['val_id'] |
---|
| 1298 | else: |
---|
[11254] | 1299 | self.flash(_('No study level selected.'), type="warning") |
---|
| 1300 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6775] | 1301 | return |
---|
| 1302 | if not isinstance(child_id, list): |
---|
| 1303 | child_id = [child_id] |
---|
| 1304 | deleted = [] |
---|
| 1305 | for id in child_id: |
---|
[7723] | 1306 | del self.context[id] |
---|
| 1307 | deleted.append(id) |
---|
[6775] | 1308 | if len(deleted): |
---|
[7723] | 1309 | self.flash(_('Successfully removed: ${a}', |
---|
| 1310 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 1311 | self.context.writeLogMessage( |
---|
| 1312 | self,'removed: %s' % ', '.join(deleted)) |
---|
[11254] | 1313 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6775] | 1314 | return |
---|
[6774] | 1315 | |
---|
[10459] | 1316 | class StudentTranscriptRequestPage(KofaPage): |
---|
[13055] | 1317 | """ Page to request transcript by student |
---|
[10458] | 1318 | """ |
---|
| 1319 | grok.context(IStudent) |
---|
| 1320 | grok.name('request_transcript') |
---|
| 1321 | grok.require('waeup.handleStudent') |
---|
[10459] | 1322 | grok.template('transcriptrequest') |
---|
[10458] | 1323 | label = _('Request transcript') |
---|
| 1324 | ac_prefix = 'TSC' |
---|
| 1325 | notice = '' |
---|
| 1326 | pnav = 4 |
---|
[16120] | 1327 | buttonname = _('Request now') |
---|
[10458] | 1328 | with_ac = True |
---|
| 1329 | |
---|
| 1330 | def update(self, SUBMIT=None): |
---|
[10459] | 1331 | super(StudentTranscriptRequestPage, self).update() |
---|
[10458] | 1332 | if not self.context.state == GRADUATED: |
---|
[11254] | 1333 | self.flash(_("Wrong state"), type="danger") |
---|
[10458] | 1334 | self.redirect(self.url(self.context)) |
---|
| 1335 | return |
---|
| 1336 | if self.with_ac: |
---|
| 1337 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1338 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[15163] | 1339 | if getattr( |
---|
| 1340 | self.context['studycourse'], 'transcript_comment', None) is not None: |
---|
| 1341 | self.correspondence = self.context[ |
---|
| 1342 | 'studycourse'].transcript_comment.replace( |
---|
| 1343 | '\n', '<br>') |
---|
[10458] | 1344 | else: |
---|
| 1345 | self.correspondence = '' |
---|
| 1346 | if SUBMIT is None: |
---|
| 1347 | return |
---|
| 1348 | if self.with_ac: |
---|
| 1349 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1350 | code = get_access_code(pin) |
---|
| 1351 | if not code: |
---|
[11254] | 1352 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[10458] | 1353 | return |
---|
| 1354 | if code.state == USED: |
---|
[11254] | 1355 | self.flash(_('Activation code has already been used.'), |
---|
| 1356 | type="warning") |
---|
[10458] | 1357 | return |
---|
| 1358 | # Mark pin as used (this also fires a pin related transition) |
---|
[13089] | 1359 | # and fire transition request_transcript |
---|
[10458] | 1360 | comment = _(u"invalidated") |
---|
| 1361 | # Here we know that the ac is in state initialized so we do not |
---|
| 1362 | # expect an exception, but the owner might be different |
---|
| 1363 | if not invalidate_accesscode(pin, comment, self.context.student_id): |
---|
[11254] | 1364 | self.flash(_('You are not the owner of this access code.'), |
---|
| 1365 | type="warning") |
---|
[10458] | 1366 | return |
---|
| 1367 | self.context.clr_code = pin |
---|
| 1368 | IWorkflowInfo(self.context).fireTransition('request_transcript') |
---|
| 1369 | comment = self.request.form.get('comment', '').replace('\r', '') |
---|
| 1370 | address = self.request.form.get('address', '').replace('\r', '') |
---|
| 1371 | tz = getattr(queryUtility(IKofaUtils), 'tzinfo', pytz.utc) |
---|
| 1372 | today = now(tz).strftime('%d/%m/%Y %H:%M:%S %Z') |
---|
[15163] | 1373 | old_transcript_comment = getattr( |
---|
| 1374 | self.context['studycourse'], 'transcript_comment', None) |
---|
[10458] | 1375 | if old_transcript_comment == None: |
---|
| 1376 | old_transcript_comment = '' |
---|
[15163] | 1377 | self.context['studycourse'].transcript_comment = '''On %s %s wrote: |
---|
[10458] | 1378 | |
---|
| 1379 | %s |
---|
| 1380 | |
---|
| 1381 | Dispatch Address: |
---|
| 1382 | %s |
---|
| 1383 | |
---|
| 1384 | %s''' % (today, self.request.principal.id, comment, address, |
---|
| 1385 | old_transcript_comment) |
---|
| 1386 | self.context.writeLogMessage( |
---|
| 1387 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 1388 | self.flash(_('Transcript processing has been started.')) |
---|
| 1389 | self.redirect(self.url(self.context)) |
---|
| 1390 | return |
---|
| 1391 | |
---|
[16120] | 1392 | class TOStudentTranscriptRequestPage(StudentTranscriptRequestPage): |
---|
| 1393 | """ Page to request transcript by student |
---|
| 1394 | """ |
---|
| 1395 | grok.context(IStudent) |
---|
| 1396 | grok.name('request_transcript_for_student') |
---|
| 1397 | grok.require('waeup.processTranscript') |
---|
| 1398 | grok.template('transcriptrequest') |
---|
| 1399 | label = _('Request transcript for student') |
---|
| 1400 | with_ac = False |
---|
| 1401 | |
---|
[15163] | 1402 | class StudentTranscriptSignView(UtilityView, grok.View): |
---|
| 1403 | """ View to sign transcript |
---|
| 1404 | """ |
---|
| 1405 | grok.context(IStudentStudyCourse) |
---|
| 1406 | grok.name('sign_transcript') |
---|
| 1407 | grok.require('waeup.signTranscript') |
---|
| 1408 | |
---|
| 1409 | def update(self, SUBMIT=None): |
---|
| 1410 | if self.context.student.state != TRANSVAL: |
---|
| 1411 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
| 1412 | self.redirect(self.url(self.context)) |
---|
| 1413 | return |
---|
| 1414 | prev_transcript_signees = getattr( |
---|
| 1415 | self.context, 'transcript_signees', None) |
---|
| 1416 | if prev_transcript_signees \ |
---|
| 1417 | and '(%s)' % self.request.principal.id in prev_transcript_signees: |
---|
| 1418 | self.flash(_('You have already signed this transcript.'), |
---|
| 1419 | type="warning") |
---|
| 1420 | self.redirect(self.url(self.context) + '/transcript') |
---|
| 1421 | return |
---|
| 1422 | self.flash(_('Transcript signed.')) |
---|
| 1423 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 1424 | self.context.student.__parent__.logger.info( |
---|
| 1425 | '%s - %s - Transcript signed' |
---|
| 1426 | % (ob_class, self.context.student.student_id)) |
---|
| 1427 | self.context.student.history.addMessage('Transcript signed') |
---|
| 1428 | tz = getattr(queryUtility(IKofaUtils), 'tzinfo', pytz.utc) |
---|
| 1429 | today = now(tz).strftime('%d/%m/%Y %H:%M:%S %Z') |
---|
| 1430 | if prev_transcript_signees == None: |
---|
| 1431 | prev_transcript_signees = '' |
---|
| 1432 | self.context.transcript_signees = ( |
---|
| 1433 | u"Electronically signed by %s (%s) on %s\n%s" |
---|
| 1434 | % (self.request.principal.title, self.request.principal.id, today, |
---|
| 1435 | prev_transcript_signees)) |
---|
| 1436 | self.redirect(self.url(self.context) + '/transcript') |
---|
| 1437 | return |
---|
| 1438 | |
---|
| 1439 | def render(self): |
---|
| 1440 | return |
---|
| 1441 | |
---|
[15174] | 1442 | class StudentTranscriptValidateFormPage(KofaEditFormPage): |
---|
| 1443 | """ Page to validate transcript |
---|
| 1444 | """ |
---|
| 1445 | grok.context(IStudentStudyCourse) |
---|
| 1446 | grok.name('validate_transcript') |
---|
| 1447 | grok.require('waeup.processTranscript') |
---|
| 1448 | grok.template('transcriptprocess') |
---|
| 1449 | label = _('Validate transcript') |
---|
[16120] | 1450 | buttonname1 = _('Save comment') |
---|
| 1451 | buttonname2 = _('Save comment and validate transcript') |
---|
[15174] | 1452 | pnav = 4 |
---|
| 1453 | |
---|
[15333] | 1454 | @property |
---|
| 1455 | def remarks(self): |
---|
| 1456 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1457 | levelremarks = '' |
---|
| 1458 | studylevelsource = StudyLevelSource().factory |
---|
| 1459 | for studylevel in self.context.values(): |
---|
| 1460 | leveltitle = studylevelsource.getTitle( |
---|
| 1461 | self.context, studylevel.level) |
---|
| 1462 | url = self.url(self.context) + '/%s/remark' % studylevel.level |
---|
| 1463 | button_title = translate( |
---|
| 1464 | _('Edit'), 'waeup.kofa', target_language=portal_language) |
---|
| 1465 | levelremarks += ( |
---|
| 1466 | '<tr>' |
---|
| 1467 | '<td>%s:</td>' |
---|
| 1468 | '<td>%s</td> ' |
---|
| 1469 | '<td><a class="btn btn-primary btn-xs" href="%s">%s</a></td>' |
---|
| 1470 | '</tr>' |
---|
| 1471 | ) % ( |
---|
| 1472 | leveltitle, studylevel.transcript_remark, url, button_title) |
---|
| 1473 | return levelremarks |
---|
| 1474 | |
---|
[16120] | 1475 | def update(self, SUBMIT=None, SAVE=None): |
---|
[15174] | 1476 | super(StudentTranscriptValidateFormPage, self).update() |
---|
| 1477 | if self.context.student.state != TRANSREQ: |
---|
| 1478 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
| 1479 | self.redirect(self.url(self.context)) |
---|
| 1480 | return |
---|
| 1481 | if getattr(self.context, 'transcript_comment', None) is not None: |
---|
| 1482 | self.correspondence = self.context.transcript_comment.replace( |
---|
| 1483 | '\n', '<br>') |
---|
| 1484 | else: |
---|
| 1485 | self.correspondence = '' |
---|
| 1486 | if getattr(self.context, 'transcript_signees', None) is not None: |
---|
| 1487 | self.signees = self.context.transcript_signees.replace( |
---|
| 1488 | '\n', '<br><br>') |
---|
| 1489 | else: |
---|
| 1490 | self.signees = '' |
---|
[16120] | 1491 | if SUBMIT is None and SAVE is None: |
---|
[15174] | 1492 | return |
---|
[16120] | 1493 | if SAVE or SUBMIT: |
---|
| 1494 | # Save comment and append old comment |
---|
| 1495 | comment = self.request.form.get('comment', '').replace('\r', '') |
---|
| 1496 | tz = getattr(queryUtility(IKofaUtils), 'tzinfo', pytz.utc) |
---|
| 1497 | today = now(tz).strftime('%d/%m/%Y %H:%M:%S %Z') |
---|
| 1498 | old_transcript_comment = getattr( |
---|
| 1499 | self.context, 'transcript_comment', None) |
---|
| 1500 | if old_transcript_comment == None: |
---|
| 1501 | old_transcript_comment = '' |
---|
| 1502 | self.context.transcript_comment = '''On %s %s wrote: |
---|
[15174] | 1503 | |
---|
| 1504 | %s |
---|
| 1505 | |
---|
[16120] | 1506 | %s''' % (today, self.request.principal.id, comment, old_transcript_comment) |
---|
| 1507 | self.context.writeLogMessage( |
---|
| 1508 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 1509 | if SUBMIT: |
---|
| 1510 | # Fire transition |
---|
| 1511 | IWorkflowInfo(self.context.student).fireTransition('validate_transcript') |
---|
| 1512 | self.flash(_('Transcript validated.')) |
---|
[15174] | 1513 | self.redirect(self.url(self.context) + '/transcript') |
---|
| 1514 | return |
---|
| 1515 | |
---|
[15163] | 1516 | class StudentTranscriptReleaseFormPage(KofaEditFormPage): |
---|
| 1517 | """ Page to release transcript |
---|
| 1518 | """ |
---|
| 1519 | grok.context(IStudentStudyCourse) |
---|
| 1520 | grok.name('release_transcript') |
---|
| 1521 | grok.require('waeup.processTranscript') |
---|
[15174] | 1522 | grok.template('transcriptprocess') |
---|
[15163] | 1523 | label = _('Release transcript') |
---|
[16120] | 1524 | buttonname1 = None |
---|
| 1525 | buttonname2 = _('Save comment and release transcript') |
---|
[10458] | 1526 | pnav = 4 |
---|
| 1527 | |
---|
[15333] | 1528 | @property |
---|
| 1529 | def remarks(self): |
---|
| 1530 | levelremarks = '' |
---|
| 1531 | studylevelsource = StudyLevelSource().factory |
---|
| 1532 | for studylevel in self.context.values(): |
---|
| 1533 | leveltitle = studylevelsource.getTitle( |
---|
| 1534 | self.context, studylevel.level) |
---|
| 1535 | levelremarks += "%s: %s <br><br>" % ( |
---|
| 1536 | leveltitle, studylevel.transcript_remark) |
---|
| 1537 | return levelremarks |
---|
| 1538 | |
---|
[10459] | 1539 | def update(self, SUBMIT=None): |
---|
[15163] | 1540 | super(StudentTranscriptReleaseFormPage, self).update() |
---|
| 1541 | if self.context.student.state != TRANSVAL: |
---|
[11254] | 1542 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
[10458] | 1543 | self.redirect(self.url(self.context)) |
---|
[10459] | 1544 | return |
---|
[15163] | 1545 | if getattr(self.context, 'transcript_comment', None) is not None: |
---|
[10459] | 1546 | self.correspondence = self.context.transcript_comment.replace( |
---|
| 1547 | '\n', '<br>') |
---|
| 1548 | else: |
---|
| 1549 | self.correspondence = '' |
---|
[15163] | 1550 | if getattr(self.context, 'transcript_signees', None) is not None: |
---|
| 1551 | self.signees = self.context.transcript_signees.replace( |
---|
| 1552 | '\n', '<br><br>') |
---|
| 1553 | else: |
---|
| 1554 | self.signees = '' |
---|
[10459] | 1555 | if SUBMIT is None: |
---|
| 1556 | return |
---|
[15163] | 1557 | # Fire transition |
---|
| 1558 | IWorkflowInfo(self.context.student).fireTransition('release_transcript') |
---|
| 1559 | self.flash(_('Transcript released and final transcript file saved.')) |
---|
[10459] | 1560 | comment = self.request.form.get('comment', '').replace('\r', '') |
---|
| 1561 | tz = getattr(queryUtility(IKofaUtils), 'tzinfo', pytz.utc) |
---|
| 1562 | today = now(tz).strftime('%d/%m/%Y %H:%M:%S %Z') |
---|
[15163] | 1563 | old_transcript_comment = getattr( |
---|
| 1564 | self.context, 'transcript_comment', None) |
---|
[10459] | 1565 | if old_transcript_comment == None: |
---|
| 1566 | old_transcript_comment = '' |
---|
| 1567 | self.context.transcript_comment = '''On %s %s wrote: |
---|
[10458] | 1568 | |
---|
[10459] | 1569 | %s |
---|
[10458] | 1570 | |
---|
[10459] | 1571 | %s''' % (today, self.request.principal.id, comment, |
---|
| 1572 | old_transcript_comment) |
---|
| 1573 | self.context.writeLogMessage( |
---|
| 1574 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
[15163] | 1575 | # Produce transcript file |
---|
| 1576 | self.redirect(self.url(self.context) + '/transcript.pdf') |
---|
[10458] | 1577 | return |
---|
| 1578 | |
---|
[10178] | 1579 | class StudyCourseTranscriptPage(KofaDisplayFormPage): |
---|
| 1580 | """ Page to display the student's transcript. |
---|
| 1581 | """ |
---|
[15163] | 1582 | grok.context(IStudentStudyCourse) |
---|
[10178] | 1583 | grok.name('transcript') |
---|
[10278] | 1584 | grok.require('waeup.viewTranscript') |
---|
[10178] | 1585 | grok.template('transcript') |
---|
| 1586 | pnav = 4 |
---|
| 1587 | |
---|
[16046] | 1588 | def format_float(self, value, prec): |
---|
| 1589 | format_float = getUtility(IKofaUtils).format_float |
---|
| 1590 | return format_float(value, prec) |
---|
| 1591 | |
---|
[10178] | 1592 | def update(self): |
---|
[15163] | 1593 | final_slip = getUtility(IExtFileStore).getFileByContext( |
---|
| 1594 | self.context.student, attr='final_transcript') |
---|
| 1595 | if not self.context.student.transcript_enabled or final_slip: |
---|
| 1596 | self.flash(_('Forbidden!'), type="warning") |
---|
[10266] | 1597 | self.redirect(self.url(self.context)) |
---|
| 1598 | return |
---|
[10178] | 1599 | super(StudyCourseTranscriptPage, self).update() |
---|
| 1600 | self.semester_dict = getUtility(IKofaUtils).SEMESTER_DICT |
---|
[10266] | 1601 | self.level_dict = level_dict(self.context) |
---|
[15203] | 1602 | self.session_dict = dict([(None, 'None'),] + |
---|
[10178] | 1603 | [(item[1], item[0]) for item in academic_sessions()]) |
---|
| 1604 | self.studymode_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
| 1605 | return |
---|
| 1606 | |
---|
| 1607 | @property |
---|
| 1608 | def label(self): |
---|
| 1609 | # Here we know that the cookie has been set |
---|
| 1610 | return _('${a}: Transcript Data', mapping = { |
---|
| 1611 | 'a':self.context.student.display_fullname}) |
---|
| 1612 | |
---|
[13055] | 1613 | class ExportPDFTranscriptSlip(UtilityView, grok.View): |
---|
[10250] | 1614 | """Deliver a PDF slip of the context. |
---|
| 1615 | """ |
---|
| 1616 | grok.context(IStudentStudyCourse) |
---|
| 1617 | grok.name('transcript.pdf') |
---|
[16170] | 1618 | grok.require('waeup.downloadTranscript') |
---|
[10250] | 1619 | prefix = 'form' |
---|
| 1620 | omit_fields = ( |
---|
[10688] | 1621 | 'department', 'faculty', 'current_mode', 'entry_session', 'certificate', |
---|
[16085] | 1622 | 'password', 'suspended', 'phone', 'email', 'parents_email', |
---|
[13711] | 1623 | 'adm_code', 'suspended_comment', 'current_level', 'flash_notice') |
---|
[10250] | 1624 | |
---|
| 1625 | def update(self): |
---|
[15163] | 1626 | final_slip = getUtility(IExtFileStore).getFileByContext( |
---|
| 1627 | self.context.student, attr='final_transcript') |
---|
| 1628 | if not self.context.student.transcript_enabled \ |
---|
| 1629 | or final_slip: |
---|
| 1630 | self.flash(_('Forbidden!'), type="warning") |
---|
[10266] | 1631 | self.redirect(self.url(self.context)) |
---|
| 1632 | return |
---|
[13055] | 1633 | super(ExportPDFTranscriptSlip, self).update() |
---|
[10250] | 1634 | self.semester_dict = getUtility(IKofaUtils).SEMESTER_DICT |
---|
[10266] | 1635 | self.level_dict = level_dict(self.context) |
---|
[15203] | 1636 | self.session_dict = dict([(None, 'None'),] + |
---|
[10250] | 1637 | [(item[1], item[0]) for item in academic_sessions()]) |
---|
| 1638 | self.studymode_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
| 1639 | return |
---|
| 1640 | |
---|
| 1641 | @property |
---|
| 1642 | def label(self): |
---|
| 1643 | # Here we know that the cookie has been set |
---|
| 1644 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1645 | return translate(_('Academic Transcript'), |
---|
| 1646 | 'waeup.kofa', target_language=portal_language) |
---|
| 1647 | |
---|
[10262] | 1648 | def _sigsInFooter(self): |
---|
[15163] | 1649 | if getattr( |
---|
| 1650 | self.context.student['studycourse'], 'transcript_signees', None): |
---|
| 1651 | return () |
---|
[10262] | 1652 | return (_('CERTIFIED TRUE COPY'),) |
---|
| 1653 | |
---|
[10531] | 1654 | def _signatures(self): |
---|
[15163] | 1655 | return () |
---|
[10531] | 1656 | |
---|
[15163] | 1657 | def _digital_sigs(self): |
---|
| 1658 | if getattr( |
---|
| 1659 | self.context.student['studycourse'], 'transcript_signees', None): |
---|
| 1660 | return self.context.student['studycourse'].transcript_signees |
---|
| 1661 | return () |
---|
| 1662 | |
---|
| 1663 | def _save_file(self): |
---|
| 1664 | if self.context.student.state == TRANSREL: |
---|
| 1665 | return True |
---|
| 1666 | return False |
---|
| 1667 | |
---|
[10250] | 1668 | def render(self): |
---|
| 1669 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[10436] | 1670 | Term = translate(_('Term'), 'waeup.kofa', target_language=portal_language) |
---|
[10250] | 1671 | Code = translate(_('Code'), 'waeup.kofa', target_language=portal_language) |
---|
| 1672 | Title = translate(_('Title'), 'waeup.kofa', target_language=portal_language) |
---|
| 1673 | Cred = translate(_('Credits'), 'waeup.kofa', target_language=portal_language) |
---|
| 1674 | Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) |
---|
| 1675 | Grade = translate(_('Grade'), 'waeup.kofa', target_language=portal_language) |
---|
| 1676 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 1677 | self.request, self.omit_fields) |
---|
| 1678 | students_utils = getUtility(IStudentsUtils) |
---|
| 1679 | |
---|
| 1680 | tableheader = [(Code,'code', 2.5), |
---|
| 1681 | (Title,'title', 7), |
---|
[10436] | 1682 | (Term, 'semester', 1.5), |
---|
[10250] | 1683 | (Cred, 'credits', 1.5), |
---|
[14133] | 1684 | (Score, 'total_score', 1.5), |
---|
[10250] | 1685 | (Grade, 'grade', 1.5), |
---|
| 1686 | ] |
---|
| 1687 | |
---|
[15163] | 1688 | pdfstream = students_utils.renderPDFTranscript( |
---|
[10250] | 1689 | self, 'transcript.pdf', |
---|
| 1690 | self.context.student, studentview, |
---|
| 1691 | omit_fields=self.omit_fields, |
---|
[10262] | 1692 | tableheader=tableheader, |
---|
[10531] | 1693 | signatures=self._signatures(), |
---|
[10262] | 1694 | sigs_in_footer=self._sigsInFooter(), |
---|
[15163] | 1695 | digital_sigs=self._digital_sigs(), |
---|
| 1696 | save_file=self._save_file(), |
---|
[10250] | 1697 | ) |
---|
[15163] | 1698 | if not pdfstream: |
---|
| 1699 | self.redirect(self.url(self.context.student)) |
---|
| 1700 | return |
---|
| 1701 | return pdfstream |
---|
[10250] | 1702 | |
---|
[9138] | 1703 | class StudentTransferFormPage(KofaAddFormPage): |
---|
| 1704 | """Page to transfer the student. |
---|
| 1705 | """ |
---|
| 1706 | grok.context(IStudent) |
---|
| 1707 | grok.name('transfer') |
---|
| 1708 | grok.require('waeup.manageStudent') |
---|
| 1709 | label = _('Transfer student') |
---|
| 1710 | form_fields = grok.AutoFields(IStudentStudyCourseTransfer).omit( |
---|
| 1711 | 'entry_mode', 'entry_session') |
---|
| 1712 | pnav = 4 |
---|
| 1713 | |
---|
| 1714 | @jsaction(_('Transfer')) |
---|
| 1715 | def transferStudent(self, **data): |
---|
| 1716 | error = self.context.transfer(**data) |
---|
| 1717 | if error == -1: |
---|
[11254] | 1718 | self.flash(_('Current level does not match certificate levels.'), |
---|
| 1719 | type="warning") |
---|
[9138] | 1720 | elif error == -2: |
---|
[11254] | 1721 | self.flash(_('Former study course record incomplete.'), |
---|
| 1722 | type="warning") |
---|
[9138] | 1723 | elif error == -3: |
---|
[11254] | 1724 | self.flash(_('Maximum number of transfers exceeded.'), |
---|
| 1725 | type="warning") |
---|
[9138] | 1726 | else: |
---|
| 1727 | self.flash(_('Successfully transferred.')) |
---|
| 1728 | return |
---|
| 1729 | |
---|
[10060] | 1730 | class RevertTransferFormPage(KofaEditFormPage): |
---|
| 1731 | """View that reverts the previous transfer. |
---|
| 1732 | """ |
---|
| 1733 | grok.context(IStudent) |
---|
| 1734 | grok.name('revert_transfer') |
---|
| 1735 | grok.require('waeup.manageStudent') |
---|
| 1736 | grok.template('reverttransfer') |
---|
| 1737 | label = _('Revert previous transfer') |
---|
| 1738 | |
---|
| 1739 | def update(self): |
---|
| 1740 | if not self.context.has_key('studycourse_1'): |
---|
[11254] | 1741 | self.flash(_('No previous transfer.'), type="warning") |
---|
[10060] | 1742 | self.redirect(self.url(self.context)) |
---|
| 1743 | return |
---|
| 1744 | return |
---|
| 1745 | |
---|
| 1746 | @jsaction(_('Revert now')) |
---|
| 1747 | def transferStudent(self, **data): |
---|
| 1748 | self.context.revert_transfer() |
---|
| 1749 | self.flash(_('Previous transfer reverted.')) |
---|
| 1750 | self.redirect(self.url(self.context, 'studycourse')) |
---|
| 1751 | return |
---|
| 1752 | |
---|
[7819] | 1753 | class StudyLevelDisplayFormPage(KofaDisplayFormPage): |
---|
[6774] | 1754 | """ Page to display student study levels |
---|
| 1755 | """ |
---|
| 1756 | grok.context(IStudentStudyLevel) |
---|
| 1757 | grok.name('index') |
---|
| 1758 | grok.require('waeup.viewStudent') |
---|
[12873] | 1759 | form_fields = grok.AutoFields(IStudentStudyLevel).omit('level') |
---|
[9161] | 1760 | form_fields[ |
---|
| 1761 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6783] | 1762 | grok.template('studylevelpage') |
---|
[6774] | 1763 | pnav = 4 |
---|
| 1764 | |
---|
[7310] | 1765 | def update(self): |
---|
| 1766 | super(StudyLevelDisplayFormPage, self).update() |
---|
[15213] | 1767 | if self.context.level == 0: |
---|
| 1768 | self.form_fields = self.form_fields.omit('gpa') |
---|
[7310] | 1769 | return |
---|
| 1770 | |
---|
[6774] | 1771 | @property |
---|
[8141] | 1772 | def translated_values(self): |
---|
[8921] | 1773 | return translated_values(self) |
---|
[8141] | 1774 | |
---|
| 1775 | @property |
---|
[6774] | 1776 | def label(self): |
---|
[7833] | 1777 | # Here we know that the cookie has been set |
---|
| 1778 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 1779 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1780 | target_language=lang) |
---|
[15203] | 1781 | return _('${a}: ${b}', mapping = { |
---|
[8736] | 1782 | 'a':self.context.student.display_fullname, |
---|
[7723] | 1783 | 'b':level_title}) |
---|
[6774] | 1784 | |
---|
[13055] | 1785 | class ExportPDFCourseRegistrationSlip(UtilityView, grok.View): |
---|
[7028] | 1786 | """Deliver a PDF slip of the context. |
---|
| 1787 | """ |
---|
| 1788 | grok.context(IStudentStudyLevel) |
---|
[9452] | 1789 | grok.name('course_registration_slip.pdf') |
---|
[7028] | 1790 | grok.require('waeup.viewStudent') |
---|
[15405] | 1791 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
| 1792 | 'level', 'gpa', 'transcript_remark') |
---|
[9683] | 1793 | form_fields[ |
---|
[12874] | 1794 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7028] | 1795 | prefix = 'form' |
---|
[9702] | 1796 | omit_fields = ( |
---|
[10256] | 1797 | 'password', 'suspended', 'phone', 'date_of_birth', |
---|
[13711] | 1798 | 'adm_code', 'sex', 'suspended_comment', 'current_level', |
---|
| 1799 | 'flash_notice') |
---|
[7028] | 1800 | |
---|
| 1801 | @property |
---|
[7723] | 1802 | def title(self): |
---|
[7819] | 1803 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1804 | return translate(_('Level Data'), 'waeup.kofa', |
---|
[7723] | 1805 | target_language=portal_language) |
---|
| 1806 | |
---|
| 1807 | @property |
---|
[7028] | 1808 | def label(self): |
---|
[7819] | 1809 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1810 | lang = self.request.cookies.get('kofa.language', portal_language) |
---|
| 1811 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1812 | target_language=lang) |
---|
[8141] | 1813 | return translate(_('Course Registration Slip'), |
---|
[7811] | 1814 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7723] | 1815 | + ' %s' % level_title |
---|
[7028] | 1816 | |
---|
[10439] | 1817 | @property |
---|
| 1818 | def tabletitle(self): |
---|
| 1819 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1820 | tabletitle = [] |
---|
| 1821 | tabletitle.append(translate(_('1st Semester Courses'), 'waeup.kofa', |
---|
| 1822 | target_language=portal_language)) |
---|
| 1823 | tabletitle.append(translate(_('2nd Semester Courses'), 'waeup.kofa', |
---|
| 1824 | target_language=portal_language)) |
---|
| 1825 | tabletitle.append(translate(_('Level Courses'), 'waeup.kofa', |
---|
| 1826 | target_language=portal_language)) |
---|
| 1827 | return tabletitle |
---|
| 1828 | |
---|
[15694] | 1829 | def _signatures(self): |
---|
| 1830 | return () |
---|
| 1831 | |
---|
[15695] | 1832 | def _sigsInFooter(self): |
---|
| 1833 | return () |
---|
| 1834 | |
---|
[7028] | 1835 | def render(self): |
---|
[7819] | 1836 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1837 | Code = translate(_('Code'), 'waeup.kofa', target_language=portal_language) |
---|
| 1838 | Title = translate(_('Title'), 'waeup.kofa', target_language=portal_language) |
---|
| 1839 | Dept = translate(_('Dept.'), 'waeup.kofa', target_language=portal_language) |
---|
| 1840 | Faculty = translate(_('Faculty'), 'waeup.kofa', target_language=portal_language) |
---|
| 1841 | Cred = translate(_('Cred.'), 'waeup.kofa', target_language=portal_language) |
---|
[9906] | 1842 | #Mand = translate(_('Requ.'), 'waeup.kofa', target_language=portal_language) |
---|
[7811] | 1843 | Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) |
---|
[9810] | 1844 | Grade = translate(_('Grade'), 'waeup.kofa', target_language=portal_language) |
---|
[9141] | 1845 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 1846 | self.request, self.omit_fields) |
---|
[7150] | 1847 | students_utils = getUtility(IStudentsUtils) |
---|
[10438] | 1848 | |
---|
| 1849 | tabledata = [] |
---|
| 1850 | tableheader = [] |
---|
[10439] | 1851 | for i in range(1,7): |
---|
[10438] | 1852 | tabledata.append(sorted( |
---|
| 1853 | [value for value in self.context.values() if value.semester == i], |
---|
| 1854 | key=lambda value: str(value.semester) + value.code)) |
---|
| 1855 | tableheader.append([(Code,'code', 2.5), |
---|
| 1856 | (Title,'title', 5), |
---|
| 1857 | (Dept,'dcode', 1.5), (Faculty,'fcode', 1.5), |
---|
| 1858 | (Cred, 'credits', 1.5), |
---|
| 1859 | #(Mand, 'mandatory', 1.5), |
---|
| 1860 | (Score, 'score', 1.5), |
---|
| 1861 | (Grade, 'grade', 1.5), |
---|
| 1862 | #('Auto', 'automatic', 1.5) |
---|
| 1863 | ]) |
---|
[9906] | 1864 | return students_utils.renderPDF( |
---|
| 1865 | self, 'course_registration_slip.pdf', |
---|
| 1866 | self.context.student, studentview, |
---|
[10438] | 1867 | tableheader=tableheader, |
---|
| 1868 | tabledata=tabledata, |
---|
[15694] | 1869 | omit_fields=self.omit_fields, |
---|
| 1870 | signatures=self._signatures(), |
---|
[15695] | 1871 | sigs_in_footer=self._sigsInFooter(), |
---|
[9906] | 1872 | ) |
---|
[7028] | 1873 | |
---|
[7819] | 1874 | class StudyLevelManageFormPage(KofaEditFormPage): |
---|
[6792] | 1875 | """ Page to edit the student study level data |
---|
| 1876 | """ |
---|
| 1877 | grok.context(IStudentStudyLevel) |
---|
| 1878 | grok.name('manage') |
---|
[7136] | 1879 | grok.require('waeup.manageStudent') |
---|
[6792] | 1880 | grok.template('studylevelmanagepage') |
---|
[9161] | 1881 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
[12873] | 1882 | 'validation_date', 'validated_by', 'total_credits', 'gpa', 'level') |
---|
[6792] | 1883 | pnav = 4 |
---|
[7723] | 1884 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 1885 | tabtwoactions = [_('Add course ticket'), |
---|
| 1886 | _('Remove selected tickets'),_('Cancel')] |
---|
[11254] | 1887 | placeholder = _('Enter valid course code') |
---|
[6792] | 1888 | |
---|
[9895] | 1889 | def update(self, ADD=None, course=None): |
---|
[15163] | 1890 | if not self.context.__parent__.is_current \ |
---|
| 1891 | or self.context.student.studycourse_locked: |
---|
[9139] | 1892 | emit_lock_message(self) |
---|
| 1893 | return |
---|
[6792] | 1894 | super(StudyLevelManageFormPage, self).update() |
---|
[9895] | 1895 | if ADD is not None: |
---|
| 1896 | if not course: |
---|
[11254] | 1897 | self.flash(_('No valid course code entered.'), type="warning") |
---|
| 1898 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[9895] | 1899 | return |
---|
| 1900 | cat = queryUtility(ICatalog, name='courses_catalog') |
---|
| 1901 | result = cat.searchResults(code=(course, course)) |
---|
| 1902 | if len(result) != 1: |
---|
[11254] | 1903 | self.flash(_('Course not found.'), type="warning") |
---|
[9895] | 1904 | else: |
---|
| 1905 | course = list(result)[0] |
---|
| 1906 | addCourseTicket(self, course) |
---|
[11254] | 1907 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6792] | 1908 | return |
---|
| 1909 | |
---|
| 1910 | @property |
---|
[8921] | 1911 | def translated_values(self): |
---|
| 1912 | return translated_values(self) |
---|
| 1913 | |
---|
| 1914 | @property |
---|
[6792] | 1915 | def label(self): |
---|
[7833] | 1916 | # Here we know that the cookie has been set |
---|
| 1917 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 1918 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1919 | target_language=lang) |
---|
[15203] | 1920 | return _('Manage ${a}', |
---|
[7723] | 1921 | mapping = {'a':level_title}) |
---|
[6792] | 1922 | |
---|
[7723] | 1923 | @action(_('Save'), style='primary') |
---|
[6792] | 1924 | def save(self, **data): |
---|
| 1925 | msave(self, **data) |
---|
| 1926 | return |
---|
| 1927 | |
---|
[7723] | 1928 | @jsaction(_('Remove selected tickets')) |
---|
[6792] | 1929 | def delCourseTicket(self, **data): |
---|
| 1930 | form = self.request.form |
---|
[9701] | 1931 | if 'val_id' in form: |
---|
[6792] | 1932 | child_id = form['val_id'] |
---|
| 1933 | else: |
---|
[11254] | 1934 | self.flash(_('No ticket selected.'), type="warning") |
---|
| 1935 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6792] | 1936 | return |
---|
| 1937 | if not isinstance(child_id, list): |
---|
| 1938 | child_id = [child_id] |
---|
| 1939 | deleted = [] |
---|
| 1940 | for id in child_id: |
---|
[7723] | 1941 | del self.context[id] |
---|
| 1942 | deleted.append(id) |
---|
[6792] | 1943 | if len(deleted): |
---|
[7723] | 1944 | self.flash(_('Successfully removed: ${a}', |
---|
| 1945 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 1946 | self.context.writeLogMessage( |
---|
[16030] | 1947 | self,'removed: %s' % (', '.join(deleted))) |
---|
[11254] | 1948 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6792] | 1949 | return |
---|
| 1950 | |
---|
[15333] | 1951 | class StudyLevelRemarkFormPage(KofaEditFormPage): |
---|
| 1952 | """ Page to edit the student study level transcript remark only |
---|
| 1953 | """ |
---|
| 1954 | grok.context(IStudentStudyLevel) |
---|
| 1955 | grok.name('remark') |
---|
| 1956 | grok.require('waeup.processTranscript') |
---|
| 1957 | grok.template('studylevelremarkpage') |
---|
| 1958 | form_fields = grok.AutoFields(IStudentStudyLevel).omit('level') |
---|
| 1959 | form_fields['level_session'].for_display = True |
---|
| 1960 | form_fields['level_verdict'].for_display = True |
---|
| 1961 | form_fields['validation_date'].for_display = True |
---|
| 1962 | form_fields['validated_by'].for_display = True |
---|
| 1963 | |
---|
| 1964 | def update(self, ADD=None, course=None): |
---|
| 1965 | if self.context.student.studycourse_locked: |
---|
| 1966 | emit_lock_message(self) |
---|
| 1967 | return |
---|
| 1968 | super(StudyLevelRemarkFormPage, self).update() |
---|
| 1969 | |
---|
| 1970 | @property |
---|
| 1971 | def label(self): |
---|
| 1972 | lang = self.request.cookies.get('kofa.language') |
---|
| 1973 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
| 1974 | target_language=lang) |
---|
[15334] | 1975 | return _( |
---|
| 1976 | 'Edit transcript remark of level ${a}', mapping = {'a':level_title}) |
---|
[15333] | 1977 | |
---|
| 1978 | @property |
---|
| 1979 | def translated_values(self): |
---|
| 1980 | return translated_values(self) |
---|
| 1981 | |
---|
| 1982 | @action(_('Save remark and go and back to transcript validation page'), |
---|
| 1983 | style='primary') |
---|
| 1984 | def save(self, **data): |
---|
| 1985 | msave(self, **data) |
---|
[15334] | 1986 | self.redirect(self.url(self.context.student) |
---|
| 1987 | + '/studycourse/validate_transcript#tab4') |
---|
[15333] | 1988 | return |
---|
| 1989 | |
---|
[13055] | 1990 | class ValidateCoursesView(UtilityView, grok.View): |
---|
[7334] | 1991 | """ Validate course list by course adviser |
---|
| 1992 | """ |
---|
| 1993 | grok.context(IStudentStudyLevel) |
---|
| 1994 | grok.name('validate_courses') |
---|
| 1995 | grok.require('waeup.validateStudent') |
---|
| 1996 | |
---|
| 1997 | def update(self): |
---|
[9139] | 1998 | if not self.context.__parent__.is_current: |
---|
| 1999 | emit_lock_message(self) |
---|
| 2000 | return |
---|
[15163] | 2001 | if str(self.context.student.current_level) != self.context.__name__: |
---|
[13610] | 2002 | self.flash(_('This is not the student\'s current level.'), |
---|
[11254] | 2003 | type="danger") |
---|
[8736] | 2004 | elif self.context.student.state == REGISTERED: |
---|
| 2005 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[7642] | 2006 | 'validate_courses') |
---|
[7723] | 2007 | self.flash(_('Course list has been validated.')) |
---|
[7334] | 2008 | else: |
---|
[11254] | 2009 | self.flash(_('Student is in the wrong state.'), type="warning") |
---|
[7334] | 2010 | self.redirect(self.url(self.context)) |
---|
| 2011 | return |
---|
| 2012 | |
---|
| 2013 | def render(self): |
---|
| 2014 | return |
---|
| 2015 | |
---|
[13055] | 2016 | class RejectCoursesView(UtilityView, grok.View): |
---|
[7334] | 2017 | """ Reject course list by course adviser |
---|
| 2018 | """ |
---|
| 2019 | grok.context(IStudentStudyLevel) |
---|
| 2020 | grok.name('reject_courses') |
---|
| 2021 | grok.require('waeup.validateStudent') |
---|
| 2022 | |
---|
| 2023 | def update(self): |
---|
[9139] | 2024 | if not self.context.__parent__.is_current: |
---|
| 2025 | emit_lock_message(self) |
---|
| 2026 | return |
---|
[7334] | 2027 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
[13610] | 2028 | self.flash(_('This is not the student\'s current level.'), |
---|
[11254] | 2029 | type="danger") |
---|
[7334] | 2030 | self.redirect(self.url(self.context)) |
---|
| 2031 | return |
---|
[8736] | 2032 | elif self.context.student.state == VALIDATED: |
---|
| 2033 | IWorkflowInfo(self.context.student).fireTransition('reset8') |
---|
[7723] | 2034 | message = _('Course list request has been annulled.') |
---|
[7334] | 2035 | self.flash(message) |
---|
[8736] | 2036 | elif self.context.student.state == REGISTERED: |
---|
| 2037 | IWorkflowInfo(self.context.student).fireTransition('reset7') |
---|
[13610] | 2038 | message = _('Course list has been unregistered.') |
---|
[7334] | 2039 | self.flash(message) |
---|
| 2040 | else: |
---|
[11254] | 2041 | self.flash(_('Student is in the wrong state.'), type="warning") |
---|
[7334] | 2042 | self.redirect(self.url(self.context)) |
---|
| 2043 | return |
---|
| 2044 | args = {'subject':message} |
---|
[8736] | 2045 | self.redirect(self.url(self.context.student) + |
---|
[7334] | 2046 | '/contactstudent?%s' % urlencode(args)) |
---|
| 2047 | return |
---|
| 2048 | |
---|
| 2049 | def render(self): |
---|
| 2050 | return |
---|
| 2051 | |
---|
[13610] | 2052 | class UnregisterCoursesView(UtilityView, grok.View): |
---|
[14983] | 2053 | """Unregister course list by student |
---|
[13610] | 2054 | """ |
---|
| 2055 | grok.context(IStudentStudyLevel) |
---|
| 2056 | grok.name('unregister_courses') |
---|
| 2057 | grok.require('waeup.handleStudent') |
---|
| 2058 | |
---|
| 2059 | def update(self): |
---|
| 2060 | if not self.context.__parent__.is_current: |
---|
| 2061 | emit_lock_message(self) |
---|
| 2062 | return |
---|
[14247] | 2063 | try: |
---|
| 2064 | deadline = grok.getSite()['configuration'][ |
---|
| 2065 | str(self.context.level_session)].coursereg_deadline |
---|
| 2066 | except (TypeError, KeyError): |
---|
| 2067 | deadline = None |
---|
| 2068 | if deadline and deadline < datetime.now(pytz.utc): |
---|
[13610] | 2069 | self.flash(_( |
---|
| 2070 | "Course registration has ended. " |
---|
| 2071 | "Unregistration is disabled."), type="warning") |
---|
| 2072 | elif str(self.context.__parent__.current_level) != self.context.__name__: |
---|
| 2073 | self.flash(_('This is not your current level.'), type="danger") |
---|
| 2074 | elif self.context.student.state == REGISTERED: |
---|
| 2075 | IWorkflowInfo(self.context.student).fireTransition('reset7') |
---|
| 2076 | message = _('Course list has been unregistered.') |
---|
| 2077 | self.flash(message) |
---|
| 2078 | else: |
---|
| 2079 | self.flash(_('You are in the wrong state.'), type="warning") |
---|
| 2080 | self.redirect(self.url(self.context)) |
---|
| 2081 | return |
---|
| 2082 | |
---|
| 2083 | def render(self): |
---|
| 2084 | return |
---|
| 2085 | |
---|
[7819] | 2086 | class CourseTicketAddFormPage(KofaAddFormPage): |
---|
[6808] | 2087 | """Add a course ticket. |
---|
[6795] | 2088 | """ |
---|
| 2089 | grok.context(IStudentStudyLevel) |
---|
| 2090 | grok.name('add') |
---|
[7136] | 2091 | grok.require('waeup.manageStudent') |
---|
[7723] | 2092 | label = _('Add course ticket') |
---|
[9420] | 2093 | form_fields = grok.AutoFields(ICourseTicketAdd) |
---|
[6795] | 2094 | pnav = 4 |
---|
| 2095 | |
---|
[9139] | 2096 | def update(self): |
---|
[15163] | 2097 | if not self.context.__parent__.is_current \ |
---|
| 2098 | or self.context.student.studycourse_locked: |
---|
[9139] | 2099 | emit_lock_message(self) |
---|
| 2100 | return |
---|
| 2101 | super(CourseTicketAddFormPage, self).update() |
---|
| 2102 | return |
---|
| 2103 | |
---|
[11254] | 2104 | @action(_('Add course ticket'), style='primary') |
---|
[6795] | 2105 | def addCourseTicket(self, **data): |
---|
| 2106 | course = data['course'] |
---|
[9895] | 2107 | success = addCourseTicket(self, course) |
---|
| 2108 | if success: |
---|
[11254] | 2109 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6795] | 2110 | return |
---|
| 2111 | |
---|
[7834] | 2112 | @action(_('Cancel'), validator=NullValidator) |
---|
[6795] | 2113 | def cancel(self, **data): |
---|
| 2114 | self.redirect(self.url(self.context)) |
---|
| 2115 | |
---|
[7819] | 2116 | class CourseTicketDisplayFormPage(KofaDisplayFormPage): |
---|
[6796] | 2117 | """ Page to display course tickets |
---|
| 2118 | """ |
---|
| 2119 | grok.context(ICourseTicket) |
---|
| 2120 | grok.name('index') |
---|
| 2121 | grok.require('waeup.viewStudent') |
---|
[15203] | 2122 | form_fields = grok.AutoFields(ICourseTicket).omit('course_category', |
---|
| 2123 | 'ticket_session') |
---|
[9684] | 2124 | grok.template('courseticketpage') |
---|
[6796] | 2125 | pnav = 4 |
---|
| 2126 | |
---|
| 2127 | @property |
---|
| 2128 | def label(self): |
---|
[7723] | 2129 | return _('${a}: Course Ticket ${b}', mapping = { |
---|
[8736] | 2130 | 'a':self.context.student.display_fullname, |
---|
[7723] | 2131 | 'b':self.context.code}) |
---|
[6796] | 2132 | |
---|
[7819] | 2133 | class CourseTicketManageFormPage(KofaEditFormPage): |
---|
[6796] | 2134 | """ Page to manage course tickets |
---|
| 2135 | """ |
---|
| 2136 | grok.context(ICourseTicket) |
---|
| 2137 | grok.name('manage') |
---|
[7136] | 2138 | grok.require('waeup.manageStudent') |
---|
[14642] | 2139 | form_fields = grok.AutoFields(ICourseTicket).omit('course_category') |
---|
[9420] | 2140 | form_fields['title'].for_display = True |
---|
| 2141 | form_fields['fcode'].for_display = True |
---|
| 2142 | form_fields['dcode'].for_display = True |
---|
| 2143 | form_fields['semester'].for_display = True |
---|
| 2144 | form_fields['passmark'].for_display = True |
---|
| 2145 | form_fields['credits'].for_display = True |
---|
[9698] | 2146 | form_fields['mandatory'].for_display = False |
---|
[9420] | 2147 | form_fields['automatic'].for_display = True |
---|
[9422] | 2148 | form_fields['carry_over'].for_display = True |
---|
[15203] | 2149 | form_fields['ticket_session'].for_display = True |
---|
[6796] | 2150 | pnav = 4 |
---|
[9697] | 2151 | grok.template('courseticketmanagepage') |
---|
[6796] | 2152 | |
---|
[15163] | 2153 | def update(self): |
---|
| 2154 | if not self.context.__parent__.__parent__.is_current \ |
---|
| 2155 | or self.context.student.studycourse_locked: |
---|
| 2156 | emit_lock_message(self) |
---|
| 2157 | return |
---|
| 2158 | super(CourseTicketManageFormPage, self).update() |
---|
| 2159 | return |
---|
| 2160 | |
---|
[6796] | 2161 | @property |
---|
| 2162 | def label(self): |
---|
[7723] | 2163 | return _('Manage course ticket ${a}', mapping = {'a':self.context.code}) |
---|
[6796] | 2164 | |
---|
[7459] | 2165 | @action('Save', style='primary') |
---|
[6796] | 2166 | def save(self, **data): |
---|
| 2167 | msave(self, **data) |
---|
| 2168 | return |
---|
| 2169 | |
---|
[7819] | 2170 | class PaymentsManageFormPage(KofaEditFormPage): |
---|
[6869] | 2171 | """ Page to manage the student payments |
---|
[7642] | 2172 | |
---|
| 2173 | This manage form page is for both students and students officers. |
---|
[6869] | 2174 | """ |
---|
| 2175 | grok.context(IStudentPaymentsContainer) |
---|
[6940] | 2176 | grok.name('index') |
---|
[10080] | 2177 | grok.require('waeup.viewStudent') |
---|
[6869] | 2178 | form_fields = grok.AutoFields(IStudentPaymentsContainer) |
---|
| 2179 | grok.template('paymentsmanagepage') |
---|
| 2180 | pnav = 4 |
---|
| 2181 | |
---|
[10080] | 2182 | @property |
---|
| 2183 | def manage_payments_allowed(self): |
---|
| 2184 | return checkPermission('waeup.payStudent', self.context) |
---|
| 2185 | |
---|
[6940] | 2186 | def unremovable(self, ticket): |
---|
[7251] | 2187 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 2188 | if not usertype: |
---|
| 2189 | return False |
---|
[10080] | 2190 | if not self.manage_payments_allowed: |
---|
| 2191 | return True |
---|
[7251] | 2192 | return (self.request.principal.user_type == 'student' and ticket.r_code) |
---|
[6940] | 2193 | |
---|
[6869] | 2194 | @property |
---|
| 2195 | def label(self): |
---|
[7723] | 2196 | return _('${a}: Payments', |
---|
| 2197 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6869] | 2198 | |
---|
[7723] | 2199 | @jsaction(_('Remove selected tickets')) |
---|
[6869] | 2200 | def delPaymentTicket(self, **data): |
---|
| 2201 | form = self.request.form |
---|
[9701] | 2202 | if 'val_id' in form: |
---|
[6869] | 2203 | child_id = form['val_id'] |
---|
| 2204 | else: |
---|
[11254] | 2205 | self.flash(_('No payment selected.'), type="warning") |
---|
[6940] | 2206 | self.redirect(self.url(self.context)) |
---|
[6869] | 2207 | return |
---|
| 2208 | if not isinstance(child_id, list): |
---|
| 2209 | child_id = [child_id] |
---|
| 2210 | deleted = [] |
---|
| 2211 | for id in child_id: |
---|
[6992] | 2212 | # Students are not allowed to remove used payment tickets |
---|
[10001] | 2213 | ticket = self.context.get(id, None) |
---|
| 2214 | if ticket is not None and not self.unremovable(ticket): |
---|
[7723] | 2215 | del self.context[id] |
---|
| 2216 | deleted.append(id) |
---|
[6869] | 2217 | if len(deleted): |
---|
[7723] | 2218 | self.flash(_('Successfully removed: ${a}', |
---|
| 2219 | mapping = {'a': ', '.join(deleted)})) |
---|
[8735] | 2220 | self.context.writeLogMessage( |
---|
[8885] | 2221 | self,'removed: %s' % ', '.join(deleted)) |
---|
[6940] | 2222 | self.redirect(self.url(self.context)) |
---|
[6869] | 2223 | return |
---|
| 2224 | |
---|
[7819] | 2225 | class OnlinePaymentAddFormPage(KofaAddFormPage): |
---|
[6869] | 2226 | """ Page to add an online payment ticket |
---|
| 2227 | """ |
---|
| 2228 | grok.context(IStudentPaymentsContainer) |
---|
| 2229 | grok.name('addop') |
---|
[9729] | 2230 | grok.template('onlinepaymentaddform') |
---|
[7181] | 2231 | grok.require('waeup.payStudent') |
---|
[15664] | 2232 | form_fields = grok.AutoFields(IStudentOnlinePayment).select('p_combi') |
---|
[7723] | 2233 | label = _('Add online payment') |
---|
[6869] | 2234 | pnav = 4 |
---|
[7642] | 2235 | |
---|
[9729] | 2236 | @property |
---|
| 2237 | def selectable_categories(self): |
---|
[15432] | 2238 | student = self.context.__parent__ |
---|
| 2239 | categories = getUtility( |
---|
| 2240 | IKofaUtils).selectable_payment_categories(student) |
---|
[15104] | 2241 | return sorted(categories.items(), key=lambda value: value[1]) |
---|
[9729] | 2242 | |
---|
[7723] | 2243 | @action(_('Create ticket'), style='primary') |
---|
[6869] | 2244 | def createTicket(self, **data): |
---|
[15664] | 2245 | form = self.request.form |
---|
| 2246 | p_category = form.get('form.p_category', None) |
---|
[15685] | 2247 | p_combi = form.get('form.p_combi', []) |
---|
[15664] | 2248 | if isinstance(form.get('form.p_combi', None), unicode): |
---|
| 2249 | p_combi = [p_combi,] |
---|
[7024] | 2250 | student = self.context.__parent__ |
---|
[12470] | 2251 | # The hostel_application payment category is temporarily used |
---|
| 2252 | # by Uniben. |
---|
| 2253 | if p_category in ('bed_allocation', 'hostel_application') and student[ |
---|
[7024] | 2254 | 'studycourse'].current_session != grok.getSite()[ |
---|
[8685] | 2255 | 'hostels'].accommodation_session: |
---|
[7024] | 2256 | self.flash( |
---|
[7723] | 2257 | _('Your current session does not match ' + \ |
---|
[11254] | 2258 | 'accommodation session.'), type="danger") |
---|
[7024] | 2259 | return |
---|
[9423] | 2260 | if 'maintenance' in p_category: |
---|
| 2261 | current_session = str(student['studycourse'].current_session) |
---|
[9701] | 2262 | if not current_session in student['accommodation']: |
---|
[11254] | 2263 | self.flash(_('You have not yet booked accommodation.'), |
---|
| 2264 | type="warning") |
---|
[9423] | 2265 | return |
---|
[7150] | 2266 | students_utils = getUtility(IStudentsUtils) |
---|
[9148] | 2267 | error, payment = students_utils.setPaymentDetails( |
---|
[15664] | 2268 | p_category, student, None, None, p_combi) |
---|
[8595] | 2269 | if error is not None: |
---|
[11254] | 2270 | self.flash(error, type="danger") |
---|
[8081] | 2271 | return |
---|
[13574] | 2272 | if p_category == 'transfer': |
---|
[15664] | 2273 | payment.p_item = form['new_programme'] |
---|
[6869] | 2274 | self.context[payment.p_id] = payment |
---|
[7723] | 2275 | self.flash(_('Payment ticket created.')) |
---|
[11676] | 2276 | self.context.writeLogMessage(self,'added: %s' % payment.p_id) |
---|
[16266] | 2277 | self.redirect(self.url(payment)) |
---|
[6869] | 2278 | return |
---|
| 2279 | |
---|
[9383] | 2280 | @action(_('Cancel'), validator=NullValidator) |
---|
| 2281 | def cancel(self, **data): |
---|
| 2282 | self.redirect(self.url(self.context)) |
---|
| 2283 | |
---|
[9862] | 2284 | class PreviousPaymentAddFormPage(KofaAddFormPage): |
---|
[13040] | 2285 | """ Page to add an online payment ticket for previous sessions. |
---|
[9148] | 2286 | """ |
---|
| 2287 | grok.context(IStudentPaymentsContainer) |
---|
| 2288 | grok.name('addpp') |
---|
| 2289 | grok.require('waeup.payStudent') |
---|
[9864] | 2290 | form_fields = grok.AutoFields(IStudentPreviousPayment) |
---|
[9148] | 2291 | label = _('Add previous session online payment') |
---|
| 2292 | pnav = 4 |
---|
| 2293 | |
---|
[9517] | 2294 | def update(self): |
---|
[9521] | 2295 | if self.context.student.before_payment: |
---|
[11254] | 2296 | self.flash(_("No previous payment to be made."), type="warning") |
---|
[9517] | 2297 | self.redirect(self.url(self.context)) |
---|
| 2298 | super(PreviousPaymentAddFormPage, self).update() |
---|
| 2299 | return |
---|
| 2300 | |
---|
[9862] | 2301 | @action(_('Create ticket'), style='primary') |
---|
| 2302 | def createTicket(self, **data): |
---|
| 2303 | p_category = data['p_category'] |
---|
| 2304 | previous_session = data.get('p_session', None) |
---|
| 2305 | previous_level = data.get('p_level', None) |
---|
| 2306 | student = self.context.__parent__ |
---|
| 2307 | students_utils = getUtility(IStudentsUtils) |
---|
| 2308 | error, payment = students_utils.setPaymentDetails( |
---|
[15664] | 2309 | p_category, student, previous_session, previous_level, None) |
---|
[9862] | 2310 | if error is not None: |
---|
[11254] | 2311 | self.flash(error, type="danger") |
---|
[9862] | 2312 | return |
---|
| 2313 | self.context[payment.p_id] = payment |
---|
| 2314 | self.flash(_('Payment ticket created.')) |
---|
[14685] | 2315 | self.context.writeLogMessage(self,'added: %s' % payment.p_id) |
---|
[16266] | 2316 | self.redirect(self.url(payment)) |
---|
[9862] | 2317 | return |
---|
| 2318 | |
---|
| 2319 | @action(_('Cancel'), validator=NullValidator) |
---|
| 2320 | def cancel(self, **data): |
---|
| 2321 | self.redirect(self.url(self.context)) |
---|
| 2322 | |
---|
[9864] | 2323 | class BalancePaymentAddFormPage(KofaAddFormPage): |
---|
[13040] | 2324 | """ Page to add an online payment which can balance s previous session |
---|
| 2325 | payment. |
---|
[9864] | 2326 | """ |
---|
| 2327 | grok.context(IStudentPaymentsContainer) |
---|
| 2328 | grok.name('addbp') |
---|
[9938] | 2329 | grok.require('waeup.manageStudent') |
---|
[9864] | 2330 | form_fields = grok.AutoFields(IStudentBalancePayment) |
---|
| 2331 | label = _('Add balance') |
---|
| 2332 | pnav = 4 |
---|
| 2333 | |
---|
| 2334 | @action(_('Create ticket'), style='primary') |
---|
| 2335 | def createTicket(self, **data): |
---|
[9868] | 2336 | p_category = data['p_category'] |
---|
[9864] | 2337 | balance_session = data.get('balance_session', None) |
---|
| 2338 | balance_level = data.get('balance_level', None) |
---|
| 2339 | balance_amount = data.get('balance_amount', None) |
---|
| 2340 | student = self.context.__parent__ |
---|
| 2341 | students_utils = getUtility(IStudentsUtils) |
---|
| 2342 | error, payment = students_utils.setBalanceDetails( |
---|
[9868] | 2343 | p_category, student, balance_session, |
---|
[9864] | 2344 | balance_level, balance_amount) |
---|
| 2345 | if error is not None: |
---|
[11254] | 2346 | self.flash(error, type="danger") |
---|
[9864] | 2347 | return |
---|
| 2348 | self.context[payment.p_id] = payment |
---|
| 2349 | self.flash(_('Payment ticket created.')) |
---|
[11676] | 2350 | self.context.writeLogMessage(self,'added: %s' % payment.p_id) |
---|
[16266] | 2351 | self.redirect(self.url(payment)) |
---|
[9864] | 2352 | return |
---|
| 2353 | |
---|
| 2354 | @action(_('Cancel'), validator=NullValidator) |
---|
| 2355 | def cancel(self, **data): |
---|
| 2356 | self.redirect(self.url(self.context)) |
---|
| 2357 | |
---|
[7819] | 2358 | class OnlinePaymentDisplayFormPage(KofaDisplayFormPage): |
---|
[6869] | 2359 | """ Page to view an online payment ticket |
---|
| 2360 | """ |
---|
[6877] | 2361 | grok.context(IStudentOnlinePayment) |
---|
[6869] | 2362 | grok.name('index') |
---|
| 2363 | grok.require('waeup.viewStudent') |
---|
[15685] | 2364 | form_fields = grok.AutoFields(IStudentOnlinePayment).omit( |
---|
| 2365 | 'p_item', 'p_combi') |
---|
[8170] | 2366 | form_fields[ |
---|
| 2367 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 2368 | form_fields[ |
---|
| 2369 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6869] | 2370 | pnav = 4 |
---|
| 2371 | |
---|
| 2372 | @property |
---|
| 2373 | def label(self): |
---|
[7723] | 2374 | return _('${a}: Online Payment Ticket ${b}', mapping = { |
---|
[8736] | 2375 | 'a':self.context.student.display_fullname, |
---|
[7723] | 2376 | 'b':self.context.p_id}) |
---|
[6869] | 2377 | |
---|
[13055] | 2378 | class OnlinePaymentApproveView(UtilityView, grok.View): |
---|
[6930] | 2379 | """ Callback view |
---|
| 2380 | """ |
---|
| 2381 | grok.context(IStudentOnlinePayment) |
---|
[8420] | 2382 | grok.name('approve') |
---|
| 2383 | grok.require('waeup.managePortal') |
---|
[6930] | 2384 | |
---|
| 2385 | def update(self): |
---|
[11580] | 2386 | flashtype, msg, log = self.context.approveStudentPayment() |
---|
[8428] | 2387 | if log is not None: |
---|
[9770] | 2388 | # Add log message to students.log |
---|
[8735] | 2389 | self.context.writeLogMessage(self,log) |
---|
[9770] | 2390 | # Add log message to payments.log |
---|
| 2391 | self.context.logger.info( |
---|
[9779] | 2392 | '%s,%s,%s,%s,%s,,,,,,' % ( |
---|
[9770] | 2393 | self.context.student.student_id, |
---|
| 2394 | self.context.p_id, self.context.p_category, |
---|
| 2395 | self.context.amount_auth, self.context.r_code)) |
---|
[11580] | 2396 | self.flash(msg, type=flashtype) |
---|
[6940] | 2397 | return |
---|
[6930] | 2398 | |
---|
| 2399 | def render(self): |
---|
[6940] | 2400 | self.redirect(self.url(self.context, '@@index')) |
---|
[6930] | 2401 | return |
---|
| 2402 | |
---|
[13055] | 2403 | class OnlinePaymentFakeApproveView(OnlinePaymentApproveView): |
---|
[8420] | 2404 | """ Approval view for students. |
---|
| 2405 | |
---|
| 2406 | This view is used for browser tests only and |
---|
[15941] | 2407 | must be neutralized on custom pages! |
---|
[8420] | 2408 | """ |
---|
| 2409 | grok.name('fake_approve') |
---|
| 2410 | grok.require('waeup.payStudent') |
---|
| 2411 | |
---|
[13055] | 2412 | class ExportPDFPaymentSlip(UtilityView, grok.View): |
---|
[7019] | 2413 | """Deliver a PDF slip of the context. |
---|
| 2414 | """ |
---|
| 2415 | grok.context(IStudentOnlinePayment) |
---|
[8262] | 2416 | grok.name('payment_slip.pdf') |
---|
[7019] | 2417 | grok.require('waeup.viewStudent') |
---|
[15685] | 2418 | form_fields = grok.AutoFields(IStudentOnlinePayment).omit( |
---|
| 2419 | 'p_item', 'p_combi') |
---|
[8173] | 2420 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 2421 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7019] | 2422 | prefix = 'form' |
---|
[8258] | 2423 | note = None |
---|
[9702] | 2424 | omit_fields = ( |
---|
[10256] | 2425 | 'password', 'suspended', 'phone', 'date_of_birth', |
---|
[13711] | 2426 | 'adm_code', 'sex', 'suspended_comment', 'current_level', |
---|
| 2427 | 'flash_notice') |
---|
[7019] | 2428 | |
---|
| 2429 | @property |
---|
[8262] | 2430 | def title(self): |
---|
| 2431 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 2432 | return translate(_('Payment Data'), 'waeup.kofa', |
---|
| 2433 | target_language=portal_language) |
---|
| 2434 | |
---|
| 2435 | @property |
---|
[7019] | 2436 | def label(self): |
---|
[8262] | 2437 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 2438 | return translate(_('Online Payment Slip'), |
---|
| 2439 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 2440 | + ' %s' % self.context.p_id |
---|
[7019] | 2441 | |
---|
| 2442 | def render(self): |
---|
[8262] | 2443 | #if self.context.p_state != 'paid': |
---|
| 2444 | # self.flash('Ticket not yet paid.') |
---|
| 2445 | # self.redirect(self.url(self.context)) |
---|
| 2446 | # return |
---|
[9141] | 2447 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 2448 | self.request, self.omit_fields) |
---|
[7150] | 2449 | students_utils = getUtility(IStudentsUtils) |
---|
[8262] | 2450 | return students_utils.renderPDF(self, 'payment_slip.pdf', |
---|
[10250] | 2451 | self.context.student, studentview, note=self.note, |
---|
| 2452 | omit_fields=self.omit_fields) |
---|
[7019] | 2453 | |
---|
[15972] | 2454 | class AccommodationDisplayFormPage(KofaDisplayFormPage): |
---|
| 2455 | """ Page to view bed tickets. |
---|
| 2456 | This manage form page is for both students and students officers. |
---|
| 2457 | """ |
---|
| 2458 | grok.context(IStudentAccommodation) |
---|
| 2459 | grok.name('index') |
---|
| 2460 | grok.require('waeup.viewStudent') |
---|
| 2461 | form_fields = grok.AutoFields(IStudentAccommodation) |
---|
| 2462 | grok.template('accommodationpage') |
---|
| 2463 | pnav = 4 |
---|
| 2464 | with_hostel_selection = True |
---|
[6992] | 2465 | |
---|
[15972] | 2466 | @property |
---|
| 2467 | def label(self): |
---|
| 2468 | return _('${a}: Accommodation', |
---|
| 2469 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
| 2470 | |
---|
| 2471 | @property |
---|
| 2472 | def desired_hostel(self): |
---|
| 2473 | if self.context.desired_hostel == 'no': |
---|
| 2474 | return _('No favoured hostel') |
---|
| 2475 | if self.context.desired_hostel: |
---|
| 2476 | hostel = grok.getSite()['hostels'].get(self.context.desired_hostel) |
---|
| 2477 | if hostel is not None: |
---|
| 2478 | return hostel.hostel_name |
---|
| 2479 | return |
---|
| 2480 | |
---|
| 2481 | def update(self): |
---|
| 2482 | if checkPermission('waeup.handleAccommodation', self.context): |
---|
| 2483 | self.redirect(self.url(self.context, 'manage')) |
---|
| 2484 | |
---|
[7819] | 2485 | class AccommodationManageFormPage(KofaEditFormPage): |
---|
[7009] | 2486 | """ Page to manage bed tickets. |
---|
[7642] | 2487 | |
---|
| 2488 | This manage form page is for both students and students officers. |
---|
[6635] | 2489 | """ |
---|
| 2490 | grok.context(IStudentAccommodation) |
---|
[15972] | 2491 | grok.name('manage') |
---|
[7181] | 2492 | grok.require('waeup.handleAccommodation') |
---|
[6635] | 2493 | form_fields = grok.AutoFields(IStudentAccommodation) |
---|
[6992] | 2494 | grok.template('accommodationmanagepage') |
---|
[6642] | 2495 | pnav = 4 |
---|
[13457] | 2496 | with_hostel_selection = True |
---|
[6635] | 2497 | |
---|
| 2498 | @property |
---|
[15210] | 2499 | def booking_allowed(self): |
---|
[13457] | 2500 | students_utils = getUtility(IStudentsUtils) |
---|
| 2501 | acc_details = students_utils.getAccommodationDetails(self.context.student) |
---|
| 2502 | error_message = students_utils.checkAccommodationRequirements( |
---|
| 2503 | self.context.student, acc_details) |
---|
| 2504 | if error_message: |
---|
[15210] | 2505 | return False |
---|
| 2506 | return True |
---|
| 2507 | |
---|
| 2508 | @property |
---|
| 2509 | def actionsgroup1(self): |
---|
| 2510 | if not self.booking_allowed: |
---|
[13457] | 2511 | return [] |
---|
[15210] | 2512 | if not self.with_hostel_selection: |
---|
| 2513 | return [] |
---|
[13457] | 2514 | return [_('Save')] |
---|
| 2515 | |
---|
| 2516 | @property |
---|
| 2517 | def actionsgroup2(self): |
---|
| 2518 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[15210] | 2519 | ## Book button can be disabled in custom packages by |
---|
| 2520 | ## uncommenting the following lines. |
---|
| 2521 | #if not self.booking_allowed: |
---|
| 2522 | # return [] |
---|
[13457] | 2523 | return [_('Book accommodation')] |
---|
| 2524 | return [_('Book accommodation'), _('Remove selected')] |
---|
| 2525 | |
---|
| 2526 | @property |
---|
[6635] | 2527 | def label(self): |
---|
[7723] | 2528 | return _('${a}: Accommodation', |
---|
| 2529 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6637] | 2530 | |
---|
[13480] | 2531 | @property |
---|
| 2532 | def desired_hostel(self): |
---|
[15312] | 2533 | if self.context.desired_hostel == 'no': |
---|
| 2534 | return _('No favoured hostel') |
---|
[13480] | 2535 | if self.context.desired_hostel: |
---|
| 2536 | hostel = grok.getSite()['hostels'].get(self.context.desired_hostel) |
---|
| 2537 | if hostel is not None: |
---|
| 2538 | return hostel.hostel_name |
---|
| 2539 | return |
---|
| 2540 | |
---|
[13457] | 2541 | def getHostels(self): |
---|
| 2542 | """Get a list of all stored hostels. |
---|
| 2543 | """ |
---|
| 2544 | yield(dict(name=None, title='--', selected='')) |
---|
[15312] | 2545 | selected = '' |
---|
| 2546 | if self.context.desired_hostel == 'no': |
---|
| 2547 | selected = 'selected' |
---|
| 2548 | yield(dict(name='no', title=_('No favoured hostel'), selected=selected)) |
---|
[13457] | 2549 | for val in grok.getSite()['hostels'].values(): |
---|
| 2550 | selected = '' |
---|
| 2551 | if val.hostel_id == self.context.desired_hostel: |
---|
| 2552 | selected = 'selected' |
---|
| 2553 | yield(dict(name=val.hostel_id, title=val.hostel_name, |
---|
| 2554 | selected=selected)) |
---|
| 2555 | |
---|
| 2556 | @action(_('Save'), style='primary') |
---|
| 2557 | def save(self): |
---|
| 2558 | hostel = self.request.form.get('hostel', None) |
---|
| 2559 | self.context.desired_hostel = hostel |
---|
| 2560 | self.flash(_('Your selection has been saved.')) |
---|
| 2561 | return |
---|
| 2562 | |
---|
[13467] | 2563 | @action(_('Book accommodation'), style='primary') |
---|
[13457] | 2564 | def bookAccommodation(self, **data): |
---|
| 2565 | self.redirect(self.url(self.context, 'add')) |
---|
| 2566 | return |
---|
| 2567 | |
---|
[7723] | 2568 | @jsaction(_('Remove selected')) |
---|
[7009] | 2569 | def delBedTickets(self, **data): |
---|
[7240] | 2570 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[11254] | 2571 | self.flash(_('You are not allowed to remove bed tickets.'), |
---|
| 2572 | type="warning") |
---|
[7017] | 2573 | self.redirect(self.url(self.context)) |
---|
| 2574 | return |
---|
[6992] | 2575 | form = self.request.form |
---|
[9701] | 2576 | if 'val_id' in form: |
---|
[6992] | 2577 | child_id = form['val_id'] |
---|
| 2578 | else: |
---|
[11254] | 2579 | self.flash(_('No bed ticket selected.'), type="warning") |
---|
[6992] | 2580 | self.redirect(self.url(self.context)) |
---|
| 2581 | return |
---|
| 2582 | if not isinstance(child_id, list): |
---|
| 2583 | child_id = [child_id] |
---|
| 2584 | deleted = [] |
---|
| 2585 | for id in child_id: |
---|
[7068] | 2586 | del self.context[id] |
---|
| 2587 | deleted.append(id) |
---|
[6992] | 2588 | if len(deleted): |
---|
[7723] | 2589 | self.flash(_('Successfully removed: ${a}', |
---|
| 2590 | mapping = {'a':', '.join(deleted)})) |
---|
[8735] | 2591 | self.context.writeLogMessage( |
---|
| 2592 | self,'removed: % s' % ', '.join(deleted)) |
---|
[6992] | 2593 | self.redirect(self.url(self.context)) |
---|
| 2594 | return |
---|
| 2595 | |
---|
[7819] | 2596 | class BedTicketAddPage(KofaPage): |
---|
[14891] | 2597 | """ Page to add a bed ticket |
---|
[6992] | 2598 | """ |
---|
| 2599 | grok.context(IStudentAccommodation) |
---|
| 2600 | grok.name('add') |
---|
[7181] | 2601 | grok.require('waeup.handleAccommodation') |
---|
[15709] | 2602 | #grok.template('enterpin') |
---|
[6993] | 2603 | ac_prefix = 'HOS' |
---|
[7723] | 2604 | label = _('Add bed ticket') |
---|
[6992] | 2605 | pnav = 4 |
---|
[7723] | 2606 | buttonname = _('Create bed ticket') |
---|
[6993] | 2607 | notice = '' |
---|
[9188] | 2608 | with_ac = True |
---|
[15705] | 2609 | with_bedselection = True |
---|
[6992] | 2610 | |
---|
[15709] | 2611 | @property |
---|
| 2612 | def getAvailableBeds(self): |
---|
[15705] | 2613 | """Get a list of all available beds. |
---|
| 2614 | """ |
---|
| 2615 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 2616 | entries = cat.searchResults( |
---|
[15709] | 2617 | bed_type=(self.acc_details['bt'],self.acc_details['bt'])) |
---|
[15705] | 2618 | available_beds = [ |
---|
| 2619 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
[15709] | 2620 | desired_hostel = self.context.desired_hostel |
---|
| 2621 | # Filter desired hostel beds |
---|
[15705] | 2622 | if desired_hostel and desired_hostel != 'no': |
---|
| 2623 | filtered_beds = [bed for bed in available_beds |
---|
| 2624 | if bed.bed_id.startswith(desired_hostel)] |
---|
[15709] | 2625 | available_beds = filtered_beds |
---|
| 2626 | # Add legible bed coordinates |
---|
| 2627 | for bed in available_beds: |
---|
| 2628 | hall_title = bed.__parent__.hostel_name |
---|
| 2629 | coordinates = bed.coordinates[1:] |
---|
| 2630 | block, room_nr, bed_nr = coordinates |
---|
| 2631 | bed.temp_bed_coordinates = _( |
---|
| 2632 | '${a}, Block ${b}, Room ${c}, Bed ${d}', mapping = { |
---|
| 2633 | 'a':hall_title, 'b':block, |
---|
| 2634 | 'c':room_nr, 'd':bed_nr}) |
---|
[15705] | 2635 | return available_beds |
---|
| 2636 | |
---|
[6992] | 2637 | def update(self, SUBMIT=None): |
---|
[8736] | 2638 | student = self.context.student |
---|
[7150] | 2639 | students_utils = getUtility(IStudentsUtils) |
---|
[15709] | 2640 | self.acc_details = students_utils.getAccommodationDetails(student) |
---|
[13247] | 2641 | error_message = students_utils.checkAccommodationRequirements( |
---|
[15709] | 2642 | student, self.acc_details) |
---|
| 2643 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 2644 | entries = cat.searchResults( |
---|
| 2645 | owner=(student.student_id,student.student_id)) |
---|
| 2646 | self.show_available_beds = False |
---|
[13247] | 2647 | if error_message: |
---|
| 2648 | self.flash(error_message, type="warning") |
---|
[8688] | 2649 | self.redirect(self.url(self.context)) |
---|
| 2650 | return |
---|
[9188] | 2651 | if self.with_ac: |
---|
| 2652 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2653 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[15709] | 2654 | available_beds = self.getAvailableBeds |
---|
[6992] | 2655 | if SUBMIT is None: |
---|
[15709] | 2656 | if self.with_bedselection and available_beds and not len(entries): |
---|
| 2657 | self.show_available_beds = True |
---|
[6992] | 2658 | return |
---|
[9188] | 2659 | if self.with_ac: |
---|
| 2660 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2661 | code = get_access_code(pin) |
---|
| 2662 | if not code: |
---|
[11254] | 2663 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[9188] | 2664 | return |
---|
[7060] | 2665 | # Search and book bed |
---|
[7003] | 2666 | if len(entries): |
---|
[15709] | 2667 | # If bed space has been manually allocated use this bed ... |
---|
[13050] | 2668 | manual = True |
---|
[15806] | 2669 | bed = list(entries)[0] |
---|
[7060] | 2670 | else: |
---|
[15709] | 2671 | # ... else search for available beds |
---|
[13050] | 2672 | manual = False |
---|
[15709] | 2673 | selected_bed = self.request.form.get('bed', None) |
---|
| 2674 | if selected_bed: |
---|
| 2675 | # Use selected bed |
---|
| 2676 | beds = cat.searchResults( |
---|
| 2677 | bed_id=(selected_bed,selected_bed)) |
---|
| 2678 | bed = list(beds)[0] |
---|
| 2679 | bed.bookBed(student.student_id) |
---|
| 2680 | elif available_beds: |
---|
| 2681 | # Select bed according to selectBed method |
---|
[7150] | 2682 | students_utils = getUtility(IStudentsUtils) |
---|
[15705] | 2683 | bed = students_utils.selectBed(available_beds) |
---|
[7060] | 2684 | bed.bookBed(student.student_id) |
---|
| 2685 | else: |
---|
[7723] | 2686 | self.flash(_('There is no free bed in your category ${a}.', |
---|
[15709] | 2687 | mapping = {'a':self.acc_details['bt']}), type="warning") |
---|
[13457] | 2688 | self.redirect(self.url(self.context)) |
---|
[7060] | 2689 | return |
---|
[9188] | 2690 | if self.with_ac: |
---|
| 2691 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2692 | if code.state == USED: |
---|
[11254] | 2693 | self.flash(_('Activation code has already been used.'), |
---|
| 2694 | type="warning") |
---|
[13050] | 2695 | if not manual: |
---|
| 2696 | # Release the previously booked bed |
---|
| 2697 | bed.owner = NOT_OCCUPIED |
---|
| 2698 | # Catalog must be informed |
---|
| 2699 | notify(grok.ObjectModifiedEvent(bed)) |
---|
[6992] | 2700 | return |
---|
[9188] | 2701 | else: |
---|
| 2702 | comment = _(u'invalidated') |
---|
| 2703 | # Here we know that the ac is in state initialized so we do not |
---|
| 2704 | # expect an exception, but the owner might be different |
---|
[13050] | 2705 | success = invalidate_accesscode( |
---|
| 2706 | pin, comment, self.context.student.student_id) |
---|
| 2707 | if not success: |
---|
[11254] | 2708 | self.flash(_('You are not the owner of this access code.'), |
---|
| 2709 | type="warning") |
---|
[13050] | 2710 | if not manual: |
---|
| 2711 | # Release the previously booked bed |
---|
| 2712 | bed.owner = NOT_OCCUPIED |
---|
| 2713 | # Catalog must be informed |
---|
| 2714 | notify(grok.ObjectModifiedEvent(bed)) |
---|
[9188] | 2715 | return |
---|
[7060] | 2716 | # Create bed ticket |
---|
[6992] | 2717 | bedticket = createObject(u'waeup.BedTicket') |
---|
[9189] | 2718 | if self.with_ac: |
---|
| 2719 | bedticket.booking_code = pin |
---|
[15709] | 2720 | bedticket.booking_session = self.acc_details['booking_session'] |
---|
| 2721 | bedticket.bed_type = self.acc_details['bt'] |
---|
[7006] | 2722 | bedticket.bed = bed |
---|
[6996] | 2723 | hall_title = bed.__parent__.hostel_name |
---|
[9199] | 2724 | coordinates = bed.coordinates[1:] |
---|
[6996] | 2725 | block, room_nr, bed_nr = coordinates |
---|
[7723] | 2726 | bc = _('${a}, Block ${b}, Room ${c}, Bed ${d} (${e})', mapping = { |
---|
| 2727 | 'a':hall_title, 'b':block, |
---|
| 2728 | 'c':room_nr, 'd':bed_nr, |
---|
| 2729 | 'e':bed.bed_type}) |
---|
[7819] | 2730 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7723] | 2731 | bedticket.bed_coordinates = translate( |
---|
[7811] | 2732 | bc, 'waeup.kofa',target_language=portal_language) |
---|
[9423] | 2733 | self.context.addBedTicket(bedticket) |
---|
[9411] | 2734 | self.context.writeLogMessage(self, 'booked: %s' % bed.bed_id) |
---|
[7723] | 2735 | self.flash(_('Bed ticket created and bed booked: ${a}', |
---|
[9984] | 2736 | mapping = {'a':bedticket.display_coordinates})) |
---|
[6992] | 2737 | self.redirect(self.url(self.context)) |
---|
| 2738 | return |
---|
| 2739 | |
---|
[7819] | 2740 | class BedTicketDisplayFormPage(KofaDisplayFormPage): |
---|
[6994] | 2741 | """ Page to display bed tickets |
---|
| 2742 | """ |
---|
| 2743 | grok.context(IBedTicket) |
---|
| 2744 | grok.name('index') |
---|
[15972] | 2745 | grok.require('waeup.viewStudent') |
---|
[9984] | 2746 | form_fields = grok.AutoFields(IBedTicket).omit('bed_coordinates') |
---|
[9201] | 2747 | form_fields['booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6994] | 2748 | pnav = 4 |
---|
| 2749 | |
---|
| 2750 | @property |
---|
| 2751 | def label(self): |
---|
[7723] | 2752 | return _('Bed Ticket for Session ${a}', |
---|
| 2753 | mapping = {'a':self.context.getSessionString()}) |
---|
[6994] | 2754 | |
---|
[13055] | 2755 | class ExportPDFBedTicketSlip(UtilityView, grok.View): |
---|
[7027] | 2756 | """Deliver a PDF slip of the context. |
---|
| 2757 | """ |
---|
| 2758 | grok.context(IBedTicket) |
---|
[9452] | 2759 | grok.name('bed_allocation_slip.pdf') |
---|
[15972] | 2760 | grok.require('waeup.viewStudent') |
---|
[9984] | 2761 | form_fields = grok.AutoFields(IBedTicket).omit('bed_coordinates') |
---|
[8173] | 2762 | form_fields['booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7027] | 2763 | prefix = 'form' |
---|
[9702] | 2764 | omit_fields = ( |
---|
[10256] | 2765 | 'password', 'suspended', 'phone', 'adm_code', |
---|
[13711] | 2766 | 'suspended_comment', 'date_of_birth', 'current_level', |
---|
| 2767 | 'flash_notice') |
---|
[7027] | 2768 | |
---|
| 2769 | @property |
---|
[7723] | 2770 | def title(self): |
---|
[7819] | 2771 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 2772 | return translate(_('Bed Allocation Data'), 'waeup.kofa', |
---|
[7723] | 2773 | target_language=portal_language) |
---|
| 2774 | |
---|
| 2775 | @property |
---|
[7027] | 2776 | def label(self): |
---|
[7819] | 2777 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[9201] | 2778 | #return translate(_('Bed Allocation: '), |
---|
| 2779 | # 'waeup.kofa', target_language=portal_language) \ |
---|
| 2780 | # + ' %s' % self.context.bed_coordinates |
---|
| 2781 | return translate(_('Bed Allocation Slip'), |
---|
[7811] | 2782 | 'waeup.kofa', target_language=portal_language) \ |
---|
[9201] | 2783 | + ' %s' % self.context.getSessionString() |
---|
[7027] | 2784 | |
---|
| 2785 | def render(self): |
---|
[9141] | 2786 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 2787 | self.request, self.omit_fields) |
---|
[7150] | 2788 | students_utils = getUtility(IStudentsUtils) |
---|
[15250] | 2789 | note = None |
---|
| 2790 | n = grok.getSite()['hostels'].allocation_expiration |
---|
| 2791 | if n: |
---|
[15254] | 2792 | note = _(""" |
---|
[15250] | 2793 | <br /><br /><br /><br /><br /><font size="12"> |
---|
| 2794 | Please endeavour to pay your hostel maintenance charge within ${a} days |
---|
| 2795 | of being allocated a space or else you are deemed to have |
---|
| 2796 | voluntarily forfeited it and it goes back into circulation to be |
---|
[15254] | 2797 | available for booking afresh!</font>) |
---|
| 2798 | """) |
---|
[15250] | 2799 | note = _(note, mapping={'a': n}) |
---|
| 2800 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 2801 | note = translate( |
---|
| 2802 | note, 'waeup.kofa', target_language=portal_language) |
---|
[7186] | 2803 | return students_utils.renderPDF( |
---|
[9452] | 2804 | self, 'bed_allocation_slip.pdf', |
---|
[10250] | 2805 | self.context.student, studentview, |
---|
[15250] | 2806 | omit_fields=self.omit_fields, |
---|
| 2807 | note=note) |
---|
[7027] | 2808 | |
---|
[13055] | 2809 | class BedTicketRelocationView(UtilityView, grok.View): |
---|
[7015] | 2810 | """ Callback view |
---|
| 2811 | """ |
---|
| 2812 | grok.context(IBedTicket) |
---|
| 2813 | grok.name('relocate') |
---|
| 2814 | grok.require('waeup.manageHostels') |
---|
| 2815 | |
---|
[7059] | 2816 | # Relocate student if student parameters have changed or the bed_type |
---|
| 2817 | # of the bed has changed |
---|
[7015] | 2818 | def update(self): |
---|
[13455] | 2819 | success, msg = self.context.relocateStudent() |
---|
| 2820 | if not success: |
---|
| 2821 | self.flash(msg, type="warning") |
---|
[7068] | 2822 | else: |
---|
[13455] | 2823 | self.flash(msg) |
---|
[7015] | 2824 | self.redirect(self.url(self.context)) |
---|
| 2825 | return |
---|
| 2826 | |
---|
| 2827 | def render(self): |
---|
| 2828 | return |
---|
| 2829 | |
---|
[7819] | 2830 | class StudentHistoryPage(KofaPage): |
---|
[11976] | 2831 | """ Page to display student history |
---|
[6637] | 2832 | """ |
---|
| 2833 | grok.context(IStudent) |
---|
| 2834 | grok.name('history') |
---|
[6660] | 2835 | grok.require('waeup.viewStudent') |
---|
[6637] | 2836 | grok.template('studenthistory') |
---|
[6642] | 2837 | pnav = 4 |
---|
[6637] | 2838 | |
---|
| 2839 | @property |
---|
| 2840 | def label(self): |
---|
[7723] | 2841 | return _('${a}: History', mapping = {'a':self.context.display_fullname}) |
---|
[6694] | 2842 | |
---|
| 2843 | # Pages for students only |
---|
| 2844 | |
---|
[7819] | 2845 | class StudentBaseEditFormPage(KofaEditFormPage): |
---|
[7133] | 2846 | """ View to edit student base data |
---|
| 2847 | """ |
---|
| 2848 | grok.context(IStudent) |
---|
| 2849 | grok.name('edit_base') |
---|
| 2850 | grok.require('waeup.handleStudent') |
---|
| 2851 | form_fields = grok.AutoFields(IStudentBase).select( |
---|
[15609] | 2852 | 'email', 'phone', 'parents_email') |
---|
[7723] | 2853 | label = _('Edit base data') |
---|
[7133] | 2854 | pnav = 4 |
---|
| 2855 | |
---|
[7723] | 2856 | @action(_('Save'), style='primary') |
---|
[7133] | 2857 | def save(self, **data): |
---|
| 2858 | msave(self, **data) |
---|
| 2859 | return |
---|
| 2860 | |
---|
[7819] | 2861 | class StudentChangePasswordPage(KofaEditFormPage): |
---|
[11976] | 2862 | """ View to edit student passwords |
---|
[6756] | 2863 | """ |
---|
| 2864 | grok.context(IStudent) |
---|
[7114] | 2865 | grok.name('change_password') |
---|
[6694] | 2866 | grok.require('waeup.handleStudent') |
---|
[7144] | 2867 | grok.template('change_password') |
---|
[7723] | 2868 | label = _('Change password') |
---|
[6694] | 2869 | pnav = 4 |
---|
| 2870 | |
---|
[7723] | 2871 | @action(_('Save'), style='primary') |
---|
[7144] | 2872 | def save(self, **data): |
---|
| 2873 | form = self.request.form |
---|
| 2874 | password = form.get('change_password', None) |
---|
| 2875 | password_ctl = form.get('change_password_repeat', None) |
---|
| 2876 | if password: |
---|
[7147] | 2877 | validator = getUtility(IPasswordValidator) |
---|
| 2878 | errors = validator.validate_password(password, password_ctl) |
---|
| 2879 | if not errors: |
---|
| 2880 | IUserAccount(self.context).setPassword(password) |
---|
[12807] | 2881 | # Unset temporary password |
---|
| 2882 | self.context.temp_password = None |
---|
[8735] | 2883 | self.context.writeLogMessage(self, 'saved: password') |
---|
[7723] | 2884 | self.flash(_('Password changed.')) |
---|
[6756] | 2885 | else: |
---|
[11254] | 2886 | self.flash( ' '.join(errors), type="warning") |
---|
[6756] | 2887 | return |
---|
| 2888 | |
---|
[7819] | 2889 | class StudentFilesUploadPage(KofaPage): |
---|
[7114] | 2890 | """ View to upload files by student |
---|
| 2891 | """ |
---|
| 2892 | grok.context(IStudent) |
---|
| 2893 | grok.name('change_portrait') |
---|
[7127] | 2894 | grok.require('waeup.uploadStudentFile') |
---|
[7114] | 2895 | grok.template('filesuploadpage') |
---|
[7723] | 2896 | label = _('Upload portrait') |
---|
[7114] | 2897 | pnav = 4 |
---|
| 2898 | |
---|
[7133] | 2899 | def update(self): |
---|
[13129] | 2900 | PORTRAIT_CHANGE_STATES = getUtility(IStudentsUtils).PORTRAIT_CHANGE_STATES |
---|
| 2901 | if self.context.student.state not in PORTRAIT_CHANGE_STATES: |
---|
[7145] | 2902 | emit_lock_message(self) |
---|
[7133] | 2903 | return |
---|
| 2904 | super(StudentFilesUploadPage, self).update() |
---|
| 2905 | return |
---|
| 2906 | |
---|
[7819] | 2907 | class StartClearancePage(KofaPage): |
---|
[6770] | 2908 | grok.context(IStudent) |
---|
| 2909 | grok.name('start_clearance') |
---|
| 2910 | grok.require('waeup.handleStudent') |
---|
| 2911 | grok.template('enterpin') |
---|
[7723] | 2912 | label = _('Start clearance') |
---|
[6770] | 2913 | ac_prefix = 'CLR' |
---|
| 2914 | notice = '' |
---|
| 2915 | pnav = 4 |
---|
[7723] | 2916 | buttonname = _('Start clearance now') |
---|
[9952] | 2917 | with_ac = True |
---|
[6770] | 2918 | |
---|
[7133] | 2919 | @property |
---|
| 2920 | def all_required_fields_filled(self): |
---|
[13349] | 2921 | if not self.context.email: |
---|
[13350] | 2922 | return _("Email address is missing."), 'edit_base' |
---|
[13349] | 2923 | if not self.context.phone: |
---|
[13350] | 2924 | return _("Phone number is missing."), 'edit_base' |
---|
[13349] | 2925 | return |
---|
[7133] | 2926 | |
---|
| 2927 | @property |
---|
| 2928 | def portrait_uploaded(self): |
---|
| 2929 | store = getUtility(IExtFileStore) |
---|
| 2930 | if store.getFileByContext(self.context, attr=u'passport.jpg'): |
---|
| 2931 | return True |
---|
| 2932 | return False |
---|
| 2933 | |
---|
[6770] | 2934 | def update(self, SUBMIT=None): |
---|
[7671] | 2935 | if not self.context.state == ADMITTED: |
---|
[11254] | 2936 | self.flash(_("Wrong state"), type="warning") |
---|
[6936] | 2937 | self.redirect(self.url(self.context)) |
---|
| 2938 | return |
---|
[7133] | 2939 | if not self.portrait_uploaded: |
---|
[11254] | 2940 | self.flash(_("No portrait uploaded."), type="warning") |
---|
[7133] | 2941 | self.redirect(self.url(self.context, 'change_portrait')) |
---|
| 2942 | return |
---|
[13350] | 2943 | if self.all_required_fields_filled: |
---|
| 2944 | arf_warning = self.all_required_fields_filled[0] |
---|
| 2945 | arf_redirect = self.all_required_fields_filled[1] |
---|
[13349] | 2946 | self.flash(arf_warning, type="warning") |
---|
[13350] | 2947 | self.redirect(self.url(self.context, arf_redirect)) |
---|
[7133] | 2948 | return |
---|
[9952] | 2949 | if self.with_ac: |
---|
| 2950 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2951 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6770] | 2952 | if SUBMIT is None: |
---|
| 2953 | return |
---|
[9952] | 2954 | if self.with_ac: |
---|
| 2955 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2956 | code = get_access_code(pin) |
---|
| 2957 | if not code: |
---|
[11254] | 2958 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[9952] | 2959 | return |
---|
| 2960 | if code.state == USED: |
---|
[11254] | 2961 | self.flash(_('Activation code has already been used.'), |
---|
| 2962 | type="warning") |
---|
[9952] | 2963 | return |
---|
| 2964 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2965 | # and fire transition start_clearance |
---|
| 2966 | comment = _(u"invalidated") |
---|
| 2967 | # Here we know that the ac is in state initialized so we do not |
---|
| 2968 | # expect an exception, but the owner might be different |
---|
| 2969 | if not invalidate_accesscode(pin, comment, self.context.student_id): |
---|
[11254] | 2970 | self.flash(_('You are not the owner of this access code.'), |
---|
| 2971 | type="warning") |
---|
[9952] | 2972 | return |
---|
| 2973 | self.context.clr_code = pin |
---|
[6770] | 2974 | IWorkflowInfo(self.context).fireTransition('start_clearance') |
---|
[7723] | 2975 | self.flash(_('Clearance process has been started.')) |
---|
[6770] | 2976 | self.redirect(self.url(self.context,'cedit')) |
---|
| 2977 | return |
---|
| 2978 | |
---|
[6695] | 2979 | class StudentClearanceEditFormPage(StudentClearanceManageFormPage): |
---|
| 2980 | """ View to edit student clearance data by student |
---|
| 2981 | """ |
---|
| 2982 | grok.context(IStudent) |
---|
| 2983 | grok.name('cedit') |
---|
| 2984 | grok.require('waeup.handleStudent') |
---|
[7723] | 2985 | label = _('Edit clearance data') |
---|
[6718] | 2986 | |
---|
[7993] | 2987 | @property |
---|
| 2988 | def form_fields(self): |
---|
[8472] | 2989 | if self.context.is_postgrad: |
---|
[8974] | 2990 | form_fields = grok.AutoFields(IPGStudentClearance).omit( |
---|
[13103] | 2991 | 'clr_code', 'officer_comment') |
---|
[7993] | 2992 | else: |
---|
[8974] | 2993 | form_fields = grok.AutoFields(IUGStudentClearance).omit( |
---|
[13103] | 2994 | 'clr_code', 'officer_comment') |
---|
[7993] | 2995 | return form_fields |
---|
| 2996 | |
---|
[6718] | 2997 | def update(self): |
---|
| 2998 | if self.context.clearance_locked: |
---|
[7145] | 2999 | emit_lock_message(self) |
---|
[6718] | 3000 | return |
---|
| 3001 | return super(StudentClearanceEditFormPage, self).update() |
---|
[6719] | 3002 | |
---|
[7723] | 3003 | @action(_('Save'), style='primary') |
---|
[6722] | 3004 | def save(self, **data): |
---|
| 3005 | self.applyData(self.context, **data) |
---|
[7723] | 3006 | self.flash(_('Clearance form has been saved.')) |
---|
[6722] | 3007 | return |
---|
| 3008 | |
---|
[7253] | 3009 | def dataNotComplete(self): |
---|
[7642] | 3010 | """To be implemented in the customization package. |
---|
| 3011 | """ |
---|
[7253] | 3012 | return False |
---|
| 3013 | |
---|
[14102] | 3014 | @action(_('Save and request clearance'), style='primary', |
---|
| 3015 | warning=_('You can not edit your data after ' |
---|
| 3016 | 'requesting clearance. You really want to request clearance now?')) |
---|
[7186] | 3017 | def requestClearance(self, **data): |
---|
[6722] | 3018 | self.applyData(self.context, **data) |
---|
[7253] | 3019 | if self.dataNotComplete(): |
---|
[11254] | 3020 | self.flash(self.dataNotComplete(), type="warning") |
---|
[7253] | 3021 | return |
---|
[7723] | 3022 | self.flash(_('Clearance form has been saved.')) |
---|
[9021] | 3023 | if self.context.clr_code: |
---|
| 3024 | self.redirect(self.url(self.context, 'request_clearance')) |
---|
| 3025 | else: |
---|
| 3026 | # We bypass the request_clearance page if student |
---|
| 3027 | # has been imported in state 'clearance started' and |
---|
| 3028 | # no clr_code was entered before. |
---|
| 3029 | state = IWorkflowState(self.context).getState() |
---|
| 3030 | if state != CLEARANCE: |
---|
| 3031 | # This shouldn't happen, but the application officer |
---|
| 3032 | # might have forgotten to lock the form after changing the state |
---|
[11254] | 3033 | self.flash(_('This form cannot be submitted. Wrong state!'), |
---|
| 3034 | type="danger") |
---|
[9021] | 3035 | return |
---|
| 3036 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
| 3037 | self.flash(_('Clearance has been requested.')) |
---|
| 3038 | self.redirect(self.url(self.context)) |
---|
[6722] | 3039 | return |
---|
| 3040 | |
---|
[7819] | 3041 | class RequestClearancePage(KofaPage): |
---|
[6769] | 3042 | grok.context(IStudent) |
---|
| 3043 | grok.name('request_clearance') |
---|
| 3044 | grok.require('waeup.handleStudent') |
---|
| 3045 | grok.template('enterpin') |
---|
[7723] | 3046 | label = _('Request clearance') |
---|
| 3047 | notice = _('Enter the CLR access code used for starting clearance.') |
---|
[6769] | 3048 | ac_prefix = 'CLR' |
---|
| 3049 | pnav = 4 |
---|
[7723] | 3050 | buttonname = _('Request clearance now') |
---|
[9952] | 3051 | with_ac = True |
---|
[6769] | 3052 | |
---|
| 3053 | def update(self, SUBMIT=None): |
---|
[9952] | 3054 | if self.with_ac: |
---|
| 3055 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 3056 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6769] | 3057 | if SUBMIT is None: |
---|
| 3058 | return |
---|
[9952] | 3059 | if self.with_ac: |
---|
| 3060 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 3061 | if self.context.clr_code and self.context.clr_code != pin: |
---|
[11254] | 3062 | self.flash(_("This isn't your CLR access code."), type="danger") |
---|
[9952] | 3063 | return |
---|
[6769] | 3064 | state = IWorkflowState(self.context).getState() |
---|
| 3065 | if state != CLEARANCE: |
---|
[9021] | 3066 | # This shouldn't happen, but the application officer |
---|
| 3067 | # might have forgotten to lock the form after changing the state |
---|
[11254] | 3068 | self.flash(_('This form cannot be submitted. Wrong state!'), |
---|
| 3069 | type="danger") |
---|
[6769] | 3070 | return |
---|
| 3071 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
[7723] | 3072 | self.flash(_('Clearance has been requested.')) |
---|
[6769] | 3073 | self.redirect(self.url(self.context)) |
---|
[6789] | 3074 | return |
---|
[6806] | 3075 | |
---|
[8471] | 3076 | class StartSessionPage(KofaPage): |
---|
[6944] | 3077 | grok.context(IStudentStudyCourse) |
---|
[8471] | 3078 | grok.name('start_session') |
---|
[6944] | 3079 | grok.require('waeup.handleStudent') |
---|
| 3080 | grok.template('enterpin') |
---|
[8471] | 3081 | label = _('Start session') |
---|
[6944] | 3082 | ac_prefix = 'SFE' |
---|
| 3083 | notice = '' |
---|
| 3084 | pnav = 4 |
---|
[8471] | 3085 | buttonname = _('Start now') |
---|
[9952] | 3086 | with_ac = True |
---|
[6944] | 3087 | |
---|
| 3088 | def update(self, SUBMIT=None): |
---|
[9139] | 3089 | if not self.context.is_current: |
---|
| 3090 | emit_lock_message(self) |
---|
| 3091 | return |
---|
| 3092 | super(StartSessionPage, self).update() |
---|
[8471] | 3093 | if not self.context.next_session_allowed: |
---|
[11254] | 3094 | self.flash(_("You are not entitled to start session."), |
---|
| 3095 | type="warning") |
---|
[6944] | 3096 | self.redirect(self.url(self.context)) |
---|
| 3097 | return |
---|
[9952] | 3098 | if self.with_ac: |
---|
| 3099 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 3100 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6944] | 3101 | if SUBMIT is None: |
---|
| 3102 | return |
---|
[9952] | 3103 | if self.with_ac: |
---|
| 3104 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 3105 | code = get_access_code(pin) |
---|
| 3106 | if not code: |
---|
[11254] | 3107 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[6944] | 3108 | return |
---|
[9952] | 3109 | # Mark pin as used (this also fires a pin related transition) |
---|
| 3110 | if code.state == USED: |
---|
[11254] | 3111 | self.flash(_('Activation code has already been used.'), |
---|
| 3112 | type="warning") |
---|
[9952] | 3113 | return |
---|
| 3114 | else: |
---|
| 3115 | comment = _(u"invalidated") |
---|
| 3116 | # Here we know that the ac is in state initialized so we do not |
---|
| 3117 | # expect an error, but the owner might be different |
---|
| 3118 | if not invalidate_accesscode( |
---|
| 3119 | pin,comment,self.context.student.student_id): |
---|
[11254] | 3120 | self.flash(_('You are not the owner of this access code.'), |
---|
| 3121 | type="warning") |
---|
[9952] | 3122 | return |
---|
[9637] | 3123 | try: |
---|
| 3124 | if self.context.student.state == CLEARED: |
---|
| 3125 | IWorkflowInfo(self.context.student).fireTransition( |
---|
| 3126 | 'pay_first_school_fee') |
---|
| 3127 | elif self.context.student.state == RETURNING: |
---|
| 3128 | IWorkflowInfo(self.context.student).fireTransition( |
---|
| 3129 | 'pay_school_fee') |
---|
| 3130 | elif self.context.student.state == PAID: |
---|
| 3131 | IWorkflowInfo(self.context.student).fireTransition( |
---|
| 3132 | 'pay_pg_fee') |
---|
| 3133 | except ConstraintNotSatisfied: |
---|
[11254] | 3134 | self.flash(_('An error occurred, please contact the system administrator.'), |
---|
| 3135 | type="danger") |
---|
[9637] | 3136 | return |
---|
[8471] | 3137 | self.flash(_('Session started.')) |
---|
[6944] | 3138 | self.redirect(self.url(self.context)) |
---|
| 3139 | return |
---|
| 3140 | |
---|
[7819] | 3141 | class AddStudyLevelFormPage(KofaEditFormPage): |
---|
[6806] | 3142 | """ Page for students to add current study levels |
---|
| 3143 | """ |
---|
| 3144 | grok.context(IStudentStudyCourse) |
---|
| 3145 | grok.name('add') |
---|
| 3146 | grok.require('waeup.handleStudent') |
---|
| 3147 | grok.template('studyleveladdpage') |
---|
| 3148 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 3149 | pnav = 4 |
---|
| 3150 | |
---|
| 3151 | @property |
---|
| 3152 | def label(self): |
---|
| 3153 | studylevelsource = StudyLevelSource().factory |
---|
| 3154 | code = self.context.current_level |
---|
| 3155 | title = studylevelsource.getTitle(self.context, code) |
---|
[7723] | 3156 | return _('Add current level ${a}', mapping = {'a':title}) |
---|
[6806] | 3157 | |
---|
| 3158 | def update(self): |
---|
[15163] | 3159 | if not self.context.is_current \ |
---|
| 3160 | or self.context.student.studycourse_locked: |
---|
[9139] | 3161 | emit_lock_message(self) |
---|
| 3162 | return |
---|
[8736] | 3163 | if self.context.student.state != PAID: |
---|
[7145] | 3164 | emit_lock_message(self) |
---|
[6806] | 3165 | return |
---|
[11254] | 3166 | code = self.context.current_level |
---|
| 3167 | if code is None: |
---|
| 3168 | self.flash(_('Your data are incomplete'), type="danger") |
---|
| 3169 | self.redirect(self.url(self.context)) |
---|
| 3170 | return |
---|
[6806] | 3171 | super(AddStudyLevelFormPage, self).update() |
---|
| 3172 | return |
---|
| 3173 | |
---|
[7723] | 3174 | @action(_('Create course list now'), style='primary') |
---|
[6806] | 3175 | def addStudyLevel(self, **data): |
---|
[8323] | 3176 | studylevel = createObject(u'waeup.StudentStudyLevel') |
---|
[6806] | 3177 | studylevel.level = self.context.current_level |
---|
| 3178 | studylevel.level_session = self.context.current_session |
---|
| 3179 | try: |
---|
| 3180 | self.context.addStudentStudyLevel( |
---|
| 3181 | self.context.certificate,studylevel) |
---|
| 3182 | except KeyError: |
---|
[11254] | 3183 | self.flash(_('This level exists.'), type="warning") |
---|
[13773] | 3184 | self.redirect(self.url(self.context)) |
---|
| 3185 | return |
---|
[9467] | 3186 | except RequiredMissing: |
---|
[13773] | 3187 | self.flash(_('Your data are incomplete.'), type="danger") |
---|
| 3188 | self.redirect(self.url(self.context)) |
---|
| 3189 | return |
---|
| 3190 | self.flash(_('You successfully created a new course list.')) |
---|
| 3191 | self.redirect(self.url(self.context, str(studylevel.level))) |
---|
[6806] | 3192 | return |
---|
[6808] | 3193 | |
---|
[7819] | 3194 | class StudyLevelEditFormPage(KofaEditFormPage): |
---|
[6808] | 3195 | """ Page to edit the student study level data by students |
---|
| 3196 | """ |
---|
| 3197 | grok.context(IStudentStudyLevel) |
---|
| 3198 | grok.name('edit') |
---|
[9924] | 3199 | grok.require('waeup.editStudyLevel') |
---|
[6808] | 3200 | grok.template('studyleveleditpage') |
---|
| 3201 | pnav = 4 |
---|
[12473] | 3202 | placeholder = _('Enter valid course code') |
---|
[6808] | 3203 | |
---|
[9895] | 3204 | def update(self, ADD=None, course=None): |
---|
[9139] | 3205 | if not self.context.__parent__.is_current: |
---|
| 3206 | emit_lock_message(self) |
---|
| 3207 | return |
---|
[9257] | 3208 | if self.context.student.state != PAID or \ |
---|
| 3209 | not self.context.is_current_level: |
---|
[7539] | 3210 | emit_lock_message(self) |
---|
| 3211 | return |
---|
[6808] | 3212 | super(StudyLevelEditFormPage, self).update() |
---|
[9895] | 3213 | if ADD is not None: |
---|
| 3214 | if not course: |
---|
[11254] | 3215 | self.flash(_('No valid course code entered.'), type="warning") |
---|
[9895] | 3216 | return |
---|
| 3217 | cat = queryUtility(ICatalog, name='courses_catalog') |
---|
| 3218 | result = cat.searchResults(code=(course, course)) |
---|
| 3219 | if len(result) != 1: |
---|
[11254] | 3220 | self.flash(_('Course not found.'), type="warning") |
---|
[9895] | 3221 | return |
---|
| 3222 | course = list(result)[0] |
---|
[15970] | 3223 | if course.former_course: |
---|
| 3224 | self.flash(_('Former courses can\'t be added.'), type="warning") |
---|
| 3225 | return |
---|
[9895] | 3226 | addCourseTicket(self, course) |
---|
[6808] | 3227 | return |
---|
| 3228 | |
---|
| 3229 | @property |
---|
| 3230 | def label(self): |
---|
[7833] | 3231 | # Here we know that the cookie has been set |
---|
| 3232 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 3233 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 3234 | target_language=lang) |
---|
[8920] | 3235 | return _('Edit course list of ${a}', |
---|
[7723] | 3236 | mapping = {'a':level_title}) |
---|
[6808] | 3237 | |
---|
| 3238 | @property |
---|
[8921] | 3239 | def translated_values(self): |
---|
| 3240 | return translated_values(self) |
---|
| 3241 | |
---|
[9280] | 3242 | def _delCourseTicket(self, **data): |
---|
[6808] | 3243 | form = self.request.form |
---|
[9701] | 3244 | if 'val_id' in form: |
---|
[6808] | 3245 | child_id = form['val_id'] |
---|
| 3246 | else: |
---|
[11254] | 3247 | self.flash(_('No ticket selected.'), type="warning") |
---|
[6808] | 3248 | self.redirect(self.url(self.context, '@@edit')) |
---|
| 3249 | return |
---|
| 3250 | if not isinstance(child_id, list): |
---|
| 3251 | child_id = [child_id] |
---|
| 3252 | deleted = [] |
---|
| 3253 | for id in child_id: |
---|
[6940] | 3254 | # Students are not allowed to remove core tickets |
---|
[9700] | 3255 | if id in self.context and \ |
---|
| 3256 | self.context[id].removable_by_student: |
---|
[7723] | 3257 | del self.context[id] |
---|
| 3258 | deleted.append(id) |
---|
[6808] | 3259 | if len(deleted): |
---|
[7723] | 3260 | self.flash(_('Successfully removed: ${a}', |
---|
| 3261 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 3262 | self.context.writeLogMessage( |
---|
[9924] | 3263 | self,'removed: %s at %s' % |
---|
| 3264 | (', '.join(deleted), self.context.level)) |
---|
[6808] | 3265 | self.redirect(self.url(self.context, u'@@edit')) |
---|
| 3266 | return |
---|
| 3267 | |
---|
[9280] | 3268 | @jsaction(_('Remove selected tickets')) |
---|
| 3269 | def delCourseTicket(self, **data): |
---|
| 3270 | self._delCourseTicket(**data) |
---|
| 3271 | return |
---|
| 3272 | |
---|
[14684] | 3273 | def _updateTickets(self, **data): |
---|
| 3274 | cat = queryUtility(ICatalog, name='courses_catalog') |
---|
| 3275 | invalidated = list() |
---|
| 3276 | for value in self.context.values(): |
---|
| 3277 | result = cat.searchResults(code=(value.code, value.code)) |
---|
| 3278 | if len(result) != 1: |
---|
| 3279 | course = None |
---|
| 3280 | else: |
---|
| 3281 | course = list(result)[0] |
---|
| 3282 | invalid = self.context.updateCourseTicket(value, course) |
---|
| 3283 | if invalid: |
---|
| 3284 | invalidated.append(invalid) |
---|
| 3285 | if invalidated: |
---|
| 3286 | invalidated_string = ', '.join(invalidated) |
---|
| 3287 | self.context.writeLogMessage( |
---|
| 3288 | self, 'course tickets invalidated: %s' % invalidated_string) |
---|
| 3289 | self.flash(_('All course tickets updated.')) |
---|
| 3290 | return |
---|
| 3291 | |
---|
| 3292 | @action(_('Update all tickets'), |
---|
| 3293 | tooltip=_('Update all course parameters including course titles.')) |
---|
| 3294 | def updateTickets(self, **data): |
---|
| 3295 | self._updateTickets(**data) |
---|
| 3296 | return |
---|
| 3297 | |
---|
[9280] | 3298 | def _registerCourses(self, **data): |
---|
[10155] | 3299 | if self.context.student.is_postgrad and \ |
---|
| 3300 | not self.context.student.is_special_postgrad: |
---|
[9252] | 3301 | self.flash(_( |
---|
| 3302 | "You are a postgraduate student, " |
---|
[11254] | 3303 | "your course list can't bee registered."), type="warning") |
---|
[9252] | 3304 | self.redirect(self.url(self.context)) |
---|
| 3305 | return |
---|
[9830] | 3306 | students_utils = getUtility(IStudentsUtils) |
---|
[14584] | 3307 | warning = students_utils.warnCreditsOOR(self.context) |
---|
| 3308 | if warning: |
---|
| 3309 | self.flash(warning, type="warning") |
---|
[8642] | 3310 | return |
---|
[14247] | 3311 | msg = self.context.course_registration_forbidden |
---|
| 3312 | if msg: |
---|
| 3313 | self.flash(msg, type="warning") |
---|
[13031] | 3314 | return |
---|
[8736] | 3315 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[7642] | 3316 | 'register_courses') |
---|
[7723] | 3317 | self.flash(_('Course list has been registered.')) |
---|
[6810] | 3318 | self.redirect(self.url(self.context)) |
---|
| 3319 | return |
---|
| 3320 | |
---|
[12474] | 3321 | @action(_('Register course list'), style='primary', |
---|
| 3322 | warning=_('You can not edit your course list after registration.' |
---|
| 3323 | ' You really want to register?')) |
---|
[9280] | 3324 | def registerCourses(self, **data): |
---|
| 3325 | self._registerCourses(**data) |
---|
| 3326 | return |
---|
| 3327 | |
---|
[6808] | 3328 | class CourseTicketAddFormPage2(CourseTicketAddFormPage): |
---|
| 3329 | """Add a course ticket by student. |
---|
| 3330 | """ |
---|
| 3331 | grok.name('ctadd') |
---|
| 3332 | grok.require('waeup.handleStudent') |
---|
[9420] | 3333 | form_fields = grok.AutoFields(ICourseTicketAdd) |
---|
[6808] | 3334 | |
---|
[7539] | 3335 | def update(self): |
---|
[9257] | 3336 | if self.context.student.state != PAID or \ |
---|
| 3337 | not self.context.is_current_level: |
---|
[7539] | 3338 | emit_lock_message(self) |
---|
| 3339 | return |
---|
| 3340 | super(CourseTicketAddFormPage2, self).update() |
---|
| 3341 | return |
---|
| 3342 | |
---|
[7723] | 3343 | @action(_('Add course ticket')) |
---|
[6808] | 3344 | def addCourseTicket(self, **data): |
---|
[7642] | 3345 | # Safety belt |
---|
[8736] | 3346 | if self.context.student.state != PAID: |
---|
[7539] | 3347 | return |
---|
[6808] | 3348 | course = data['course'] |
---|
[15970] | 3349 | if course.former_course: |
---|
| 3350 | self.flash(_('Former courses can\'t be added.'), type="warning") |
---|
| 3351 | return |
---|
[9895] | 3352 | success = addCourseTicket(self, course) |
---|
| 3353 | if success: |
---|
| 3354 | self.redirect(self.url(self.context, u'@@edit')) |
---|
[6808] | 3355 | return |
---|
[7369] | 3356 | |
---|
[7819] | 3357 | class SetPasswordPage(KofaPage): |
---|
| 3358 | grok.context(IKofaObject) |
---|
[7660] | 3359 | grok.name('setpassword') |
---|
| 3360 | grok.require('waeup.Anonymous') |
---|
| 3361 | grok.template('setpassword') |
---|
[7723] | 3362 | label = _('Set password for first-time login') |
---|
[7660] | 3363 | ac_prefix = 'PWD' |
---|
| 3364 | pnav = 0 |
---|
[7738] | 3365 | set_button = _('Set') |
---|
[7660] | 3366 | |
---|
| 3367 | def update(self, SUBMIT=None): |
---|
| 3368 | self.reg_number = self.request.form.get('reg_number', None) |
---|
| 3369 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 3370 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 3371 | |
---|
| 3372 | if SUBMIT is None: |
---|
| 3373 | return |
---|
| 3374 | hitlist = search(query=self.reg_number, |
---|
| 3375 | searchtype='reg_number', view=self) |
---|
| 3376 | if not hitlist: |
---|
[11254] | 3377 | self.flash(_('No student found.'), type="warning") |
---|
[7660] | 3378 | return |
---|
| 3379 | if len(hitlist) != 1: # Cannot happen but anyway |
---|
[11254] | 3380 | self.flash(_('More than one student found.'), type="warning") |
---|
[7660] | 3381 | return |
---|
| 3382 | student = hitlist[0].context |
---|
| 3383 | self.student_id = student.student_id |
---|
| 3384 | student_pw = student.password |
---|
| 3385 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 3386 | code = get_access_code(pin) |
---|
| 3387 | if not code: |
---|
[11254] | 3388 | self.flash(_('Access code is invalid.'), type="warning") |
---|
[7660] | 3389 | return |
---|
| 3390 | if student_pw and pin == student.adm_code: |
---|
[7723] | 3391 | self.flash(_( |
---|
| 3392 | 'Password has already been set. Your Student Id is ${a}', |
---|
| 3393 | mapping = {'a':self.student_id})) |
---|
[7660] | 3394 | return |
---|
| 3395 | elif student_pw: |
---|
| 3396 | self.flash( |
---|
[7723] | 3397 | _('Password has already been set. You are using the ' + |
---|
[11254] | 3398 | 'wrong Access Code.'), type="warning") |
---|
[7660] | 3399 | return |
---|
| 3400 | # Mark pin as used (this also fires a pin related transition) |
---|
| 3401 | # and set student password |
---|
| 3402 | if code.state == USED: |
---|
[11254] | 3403 | self.flash(_('Access code has already been used.'), type="warning") |
---|
[7660] | 3404 | return |
---|
| 3405 | else: |
---|
[7723] | 3406 | comment = _(u"invalidated") |
---|
[7660] | 3407 | # Here we know that the ac is in state initialized so we do not |
---|
| 3408 | # expect an exception |
---|
| 3409 | invalidate_accesscode(pin,comment) |
---|
| 3410 | IUserAccount(student).setPassword(self.ac_number) |
---|
| 3411 | student.adm_code = pin |
---|
[7723] | 3412 | self.flash(_('Password has been set. Your Student Id is ${a}', |
---|
| 3413 | mapping = {'a':self.student_id})) |
---|
[7811] | 3414 | return |
---|
[8779] | 3415 | |
---|
| 3416 | class StudentRequestPasswordPage(KofaAddFormPage): |
---|
[13047] | 3417 | """Captcha'd request password page for students. |
---|
[8779] | 3418 | """ |
---|
| 3419 | grok.name('requestpw') |
---|
| 3420 | grok.require('waeup.Anonymous') |
---|
| 3421 | grok.template('requestpw') |
---|
| 3422 | form_fields = grok.AutoFields(IStudentRequestPW).select( |
---|
[13344] | 3423 | 'lastname','number','email') |
---|
[8779] | 3424 | label = _('Request password for first-time login') |
---|
| 3425 | |
---|
| 3426 | def update(self): |
---|
[13396] | 3427 | blocker = grok.getSite()['configuration'].maintmode_enabled_by |
---|
| 3428 | if blocker: |
---|
| 3429 | self.flash(_('The portal is in maintenance mode. ' |
---|
| 3430 | 'Password request forms are temporarily disabled.'), |
---|
| 3431 | type='warning') |
---|
| 3432 | self.redirect(self.url(self.context)) |
---|
| 3433 | return |
---|
[8779] | 3434 | # Handle captcha |
---|
| 3435 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 3436 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 3437 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 3438 | return |
---|
| 3439 | |
---|
| 3440 | def _redirect(self, email, password, student_id): |
---|
| 3441 | # Forward only email to landing page in base package. |
---|
| 3442 | self.redirect(self.url(self.context, 'requestpw_complete', |
---|
| 3443 | data = dict(email=email))) |
---|
| 3444 | return |
---|
| 3445 | |
---|
[14305] | 3446 | def _redirect_no_student(self): |
---|
| 3447 | # No record found, this is the truth. We do not redirect here. |
---|
| 3448 | # We are using this method in custom packages |
---|
| 3449 | # for redirecting alumni to the application section. |
---|
| 3450 | self.flash(_('No student record found.'), type="warning") |
---|
| 3451 | return |
---|
| 3452 | |
---|
[8779] | 3453 | def _pw_used(self): |
---|
[8780] | 3454 | # XXX: False if password has not been used. We need an extra |
---|
| 3455 | # attribute which remembers if student logged in. |
---|
[8779] | 3456 | return True |
---|
| 3457 | |
---|
[8854] | 3458 | @action(_('Send login credentials to email address'), style='primary') |
---|
[8779] | 3459 | def get_credentials(self, **data): |
---|
| 3460 | if not self.captcha_result.is_valid: |
---|
| 3461 | # Captcha will display error messages automatically. |
---|
| 3462 | # No need to flash something. |
---|
| 3463 | return |
---|
[8854] | 3464 | number = data.get('number','') |
---|
[13344] | 3465 | lastname = data.get('lastname','') |
---|
[8779] | 3466 | cat = getUtility(ICatalog, name='students_catalog') |
---|
| 3467 | results = list( |
---|
[8854] | 3468 | cat.searchResults(reg_number=(number, number))) |
---|
| 3469 | if not results: |
---|
| 3470 | results = list( |
---|
| 3471 | cat.searchResults(matric_number=(number, number))) |
---|
[8779] | 3472 | if results: |
---|
| 3473 | student = results[0] |
---|
[13344] | 3474 | if getattr(student,'lastname',None) is None: |
---|
[11254] | 3475 | self.flash(_('An error occurred.'), type="danger") |
---|
[8779] | 3476 | return |
---|
[13344] | 3477 | elif student.lastname.lower() != lastname.lower(): |
---|
[8779] | 3478 | # Don't tell the truth here. Anonymous must not |
---|
[13344] | 3479 | # know that a record was found and only the lastname |
---|
[8779] | 3480 | # verification failed. |
---|
[11254] | 3481 | self.flash(_('No student record found.'), type="warning") |
---|
[8779] | 3482 | return |
---|
| 3483 | elif student.password is not None and self._pw_used: |
---|
| 3484 | self.flash(_('Your password has already been set and used. ' |
---|
[11254] | 3485 | 'Please proceed to the login page.'), |
---|
| 3486 | type="warning") |
---|
[8779] | 3487 | return |
---|
| 3488 | # Store email address but nothing else. |
---|
| 3489 | student.email = data['email'] |
---|
| 3490 | notify(grok.ObjectModifiedEvent(student)) |
---|
| 3491 | else: |
---|
[14305] | 3492 | self._redirect_no_student() |
---|
[8779] | 3493 | return |
---|
| 3494 | |
---|
| 3495 | kofa_utils = getUtility(IKofaUtils) |
---|
| 3496 | password = kofa_utils.genPassword() |
---|
[8857] | 3497 | mandate = PasswordMandate() |
---|
[8853] | 3498 | mandate.params['password'] = password |
---|
[8858] | 3499 | mandate.params['user'] = student |
---|
[8853] | 3500 | site = grok.getSite() |
---|
| 3501 | site['mandates'].addMandate(mandate) |
---|
[8779] | 3502 | # Send email with credentials |
---|
[8853] | 3503 | args = {'mandate_id':mandate.mandate_id} |
---|
| 3504 | mandate_url = self.url(site) + '/mandate?%s' % urlencode(args) |
---|
| 3505 | url_info = u'Confirmation link: %s' % mandate_url |
---|
[8779] | 3506 | msg = _('You have successfully requested a password for the') |
---|
| 3507 | if kofa_utils.sendCredentials(IUserAccount(student), |
---|
[8853] | 3508 | password, url_info, msg): |
---|
[8779] | 3509 | email_sent = student.email |
---|
| 3510 | else: |
---|
| 3511 | email_sent = None |
---|
| 3512 | self._redirect(email=email_sent, password=password, |
---|
| 3513 | student_id=student.student_id) |
---|
[8856] | 3514 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 3515 | self.context.logger.info( |
---|
| 3516 | '%s - %s (%s) - %s' % (ob_class, number, student.student_id, email_sent)) |
---|
[8779] | 3517 | return |
---|
| 3518 | |
---|
[15609] | 3519 | class ParentsUser: |
---|
| 3520 | pass |
---|
| 3521 | |
---|
| 3522 | class RequestParentsPasswordPage(StudentRequestPasswordPage): |
---|
| 3523 | """Captcha'd request password page for parents. |
---|
| 3524 | """ |
---|
| 3525 | grok.name('requestppw') |
---|
| 3526 | grok.template('requestppw') |
---|
| 3527 | label = _('Request password for parents access') |
---|
| 3528 | |
---|
| 3529 | def update(self): |
---|
| 3530 | super(RequestParentsPasswordPage, self).update() |
---|
| 3531 | kofa_utils = getUtility(IKofaUtils) |
---|
| 3532 | self.temp_password_minutes = kofa_utils.TEMP_PASSWORD_MINUTES |
---|
| 3533 | return |
---|
| 3534 | |
---|
| 3535 | @action(_('Send temporary login credentials to email address'), style='primary') |
---|
| 3536 | def get_credentials(self, **data): |
---|
| 3537 | if not self.captcha_result.is_valid: |
---|
| 3538 | # Captcha will display error messages automatically. |
---|
| 3539 | # No need to flash something. |
---|
| 3540 | return |
---|
| 3541 | number = data.get('number','') |
---|
| 3542 | lastname = data.get('lastname','') |
---|
| 3543 | email = data['email'] |
---|
| 3544 | cat = getUtility(ICatalog, name='students_catalog') |
---|
| 3545 | results = list( |
---|
| 3546 | cat.searchResults(reg_number=(number, number))) |
---|
| 3547 | if not results: |
---|
| 3548 | results = list( |
---|
| 3549 | cat.searchResults(matric_number=(number, number))) |
---|
| 3550 | if results: |
---|
| 3551 | student = results[0] |
---|
| 3552 | if getattr(student,'lastname',None) is None: |
---|
| 3553 | self.flash(_('An error occurred.'), type="danger") |
---|
| 3554 | return |
---|
| 3555 | elif student.lastname.lower() != lastname.lower(): |
---|
| 3556 | # Don't tell the truth here. Anonymous must not |
---|
| 3557 | # know that a record was found and only the lastname |
---|
| 3558 | # verification failed. |
---|
| 3559 | self.flash(_('No student record found.'), type="warning") |
---|
| 3560 | return |
---|
| 3561 | elif email != student.parents_email: |
---|
| 3562 | self.flash(_('Wrong email address.'), type="warning") |
---|
| 3563 | return |
---|
| 3564 | else: |
---|
| 3565 | self._redirect_no_student() |
---|
| 3566 | return |
---|
| 3567 | kofa_utils = getUtility(IKofaUtils) |
---|
| 3568 | password = kofa_utils.genPassword() |
---|
| 3569 | mandate = ParentsPasswordMandate() |
---|
| 3570 | mandate.params['password'] = password |
---|
| 3571 | mandate.params['student'] = student |
---|
| 3572 | site = grok.getSite() |
---|
| 3573 | site['mandates'].addMandate(mandate) |
---|
| 3574 | # Send email with credentials |
---|
| 3575 | args = {'mandate_id':mandate.mandate_id} |
---|
| 3576 | mandate_url = self.url(site) + '/mandate?%s' % urlencode(args) |
---|
| 3577 | url_info = u'Confirmation link: %s' % mandate_url |
---|
| 3578 | msg = _('You have successfully requested a parents password for the') |
---|
| 3579 | # Create a fake user |
---|
| 3580 | user = ParentsUser() |
---|
| 3581 | user.name = student.student_id |
---|
| 3582 | user.title = "Parents of %s" % student.display_fullname |
---|
| 3583 | user.email = student.parents_email |
---|
| 3584 | if kofa_utils.sendCredentials(user, password, url_info, msg): |
---|
| 3585 | email_sent = user.email |
---|
| 3586 | else: |
---|
| 3587 | email_sent = None |
---|
| 3588 | self._redirect(email=email_sent, password=password, |
---|
| 3589 | student_id=student.student_id) |
---|
| 3590 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 3591 | self.context.logger.info( |
---|
| 3592 | '%s - %s (%s) - %s' % (ob_class, number, student.student_id, email_sent)) |
---|
| 3593 | return |
---|
| 3594 | |
---|
[8779] | 3595 | class StudentRequestPasswordEmailSent(KofaPage): |
---|
| 3596 | """Landing page after successful password request. |
---|
| 3597 | |
---|
| 3598 | """ |
---|
| 3599 | grok.name('requestpw_complete') |
---|
| 3600 | grok.require('waeup.Public') |
---|
| 3601 | grok.template('requestpwmailsent') |
---|
| 3602 | label = _('Your password request was successful.') |
---|
| 3603 | |
---|
| 3604 | def update(self, email=None, student_id=None, password=None): |
---|
| 3605 | self.email = email |
---|
| 3606 | self.password = password |
---|
| 3607 | self.student_id = student_id |
---|
[8974] | 3608 | return |
---|
[9797] | 3609 | |
---|
[9806] | 3610 | class FilterStudentsInDepartmentPage(KofaPage): |
---|
| 3611 | """Page that filters and lists students. |
---|
| 3612 | """ |
---|
| 3613 | grok.context(IDepartment) |
---|
| 3614 | grok.require('waeup.showStudents') |
---|
| 3615 | grok.name('students') |
---|
| 3616 | grok.template('filterstudentspage') |
---|
| 3617 | pnav = 1 |
---|
[9819] | 3618 | session_label = _('Current Session') |
---|
| 3619 | level_label = _('Current Level') |
---|
[9806] | 3620 | |
---|
| 3621 | def label(self): |
---|
[10650] | 3622 | return 'Students in %s' % self.context.longtitle |
---|
[9806] | 3623 | |
---|
| 3624 | def _set_session_values(self): |
---|
| 3625 | vocab_terms = academic_sessions_vocab.by_value.values() |
---|
| 3626 | self.sessions = sorted( |
---|
| 3627 | [(x.title, x.token) for x in vocab_terms], reverse=True) |
---|
| 3628 | self.sessions += [('All Sessions', 'all')] |
---|
| 3629 | return |
---|
| 3630 | |
---|
| 3631 | def _set_level_values(self): |
---|
| 3632 | vocab_terms = course_levels.by_value.values() |
---|
| 3633 | self.levels = sorted( |
---|
| 3634 | [(x.title, x.token) for x in vocab_terms]) |
---|
| 3635 | self.levels += [('All Levels', 'all')] |
---|
| 3636 | return |
---|
| 3637 | |
---|
| 3638 | def _searchCatalog(self, session, level): |
---|
| 3639 | if level not in (10, 999, None): |
---|
| 3640 | start_level = 100 * (level // 100) |
---|
| 3641 | end_level = start_level + 90 |
---|
| 3642 | else: |
---|
| 3643 | start_level = end_level = level |
---|
| 3644 | cat = queryUtility(ICatalog, name='students_catalog') |
---|
| 3645 | students = cat.searchResults( |
---|
| 3646 | current_session=(session, session), |
---|
| 3647 | current_level=(start_level, end_level), |
---|
| 3648 | depcode=(self.context.code, self.context.code) |
---|
| 3649 | ) |
---|
| 3650 | hitlist = [] |
---|
| 3651 | for student in students: |
---|
| 3652 | hitlist.append(StudentQueryResultItem(student, view=self)) |
---|
| 3653 | return hitlist |
---|
| 3654 | |
---|
| 3655 | def update(self, SHOW=None, session=None, level=None): |
---|
| 3656 | self.parent_url = self.url(self.context.__parent__) |
---|
| 3657 | self._set_session_values() |
---|
| 3658 | self._set_level_values() |
---|
| 3659 | self.hitlist = [] |
---|
| 3660 | self.session_default = session |
---|
| 3661 | self.level_default = level |
---|
| 3662 | if SHOW is not None: |
---|
| 3663 | if session != 'all': |
---|
| 3664 | self.session = int(session) |
---|
| 3665 | self.session_string = '%s %s/%s' % ( |
---|
| 3666 | self.session_label, self.session, self.session+1) |
---|
| 3667 | else: |
---|
| 3668 | self.session = None |
---|
| 3669 | self.session_string = _('in any session') |
---|
| 3670 | if level != 'all': |
---|
| 3671 | self.level = int(level) |
---|
| 3672 | self.level_string = '%s %s' % (self.level_label, self.level) |
---|
| 3673 | else: |
---|
| 3674 | self.level = None |
---|
| 3675 | self.level_string = _('at any level') |
---|
| 3676 | self.hitlist = self._searchCatalog(self.session, self.level) |
---|
| 3677 | if not self.hitlist: |
---|
[11254] | 3678 | self.flash(_('No student found.'), type="warning") |
---|
[9806] | 3679 | return |
---|
| 3680 | |
---|
| 3681 | class FilterStudentsInCertificatePage(FilterStudentsInDepartmentPage): |
---|
| 3682 | """Page that filters and lists students. |
---|
| 3683 | """ |
---|
| 3684 | grok.context(ICertificate) |
---|
| 3685 | |
---|
| 3686 | def label(self): |
---|
[10650] | 3687 | return 'Students studying %s' % self.context.longtitle |
---|
[9806] | 3688 | |
---|
| 3689 | def _searchCatalog(self, session, level): |
---|
| 3690 | if level not in (10, 999, None): |
---|
| 3691 | start_level = 100 * (level // 100) |
---|
| 3692 | end_level = start_level + 90 |
---|
| 3693 | else: |
---|
| 3694 | start_level = end_level = level |
---|
| 3695 | cat = queryUtility(ICatalog, name='students_catalog') |
---|
| 3696 | students = cat.searchResults( |
---|
| 3697 | current_session=(session, session), |
---|
| 3698 | current_level=(start_level, end_level), |
---|
| 3699 | certcode=(self.context.code, self.context.code) |
---|
| 3700 | ) |
---|
| 3701 | hitlist = [] |
---|
| 3702 | for student in students: |
---|
| 3703 | hitlist.append(StudentQueryResultItem(student, view=self)) |
---|
| 3704 | return hitlist |
---|
| 3705 | |
---|
| 3706 | class FilterStudentsInCoursePage(FilterStudentsInDepartmentPage): |
---|
| 3707 | """Page that filters and lists students. |
---|
| 3708 | """ |
---|
| 3709 | grok.context(ICourse) |
---|
[13764] | 3710 | grok.require('waeup.viewStudent') |
---|
[9806] | 3711 | |
---|
[10024] | 3712 | session_label = _('Session') |
---|
| 3713 | level_label = _('Level') |
---|
| 3714 | |
---|
[9806] | 3715 | def label(self): |
---|
[10650] | 3716 | return 'Students registered for %s' % self.context.longtitle |
---|
[9806] | 3717 | |
---|
| 3718 | def _searchCatalog(self, session, level): |
---|
| 3719 | if level not in (10, 999, None): |
---|
| 3720 | start_level = 100 * (level // 100) |
---|
| 3721 | end_level = start_level + 90 |
---|
| 3722 | else: |
---|
| 3723 | start_level = end_level = level |
---|
| 3724 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
| 3725 | coursetickets = cat.searchResults( |
---|
| 3726 | session=(session, session), |
---|
| 3727 | level=(start_level, end_level), |
---|
| 3728 | code=(self.context.code, self.context.code) |
---|
| 3729 | ) |
---|
| 3730 | hitlist = [] |
---|
| 3731 | for ticket in coursetickets: |
---|
| 3732 | hitlist.append(StudentQueryResultItem(ticket.student, view=self)) |
---|
[10039] | 3733 | return list(set(hitlist)) |
---|
[9806] | 3734 | |
---|
[13055] | 3735 | class ClearAllStudentsInDepartmentView(UtilityView, grok.View): |
---|
[11862] | 3736 | """ Clear all students of a department in state 'clearance requested'. |
---|
| 3737 | """ |
---|
| 3738 | grok.context(IDepartment) |
---|
| 3739 | grok.name('clearallstudents') |
---|
| 3740 | grok.require('waeup.clearAllStudents') |
---|
| 3741 | |
---|
| 3742 | def update(self): |
---|
| 3743 | cat = queryUtility(ICatalog, name='students_catalog') |
---|
| 3744 | students = cat.searchResults( |
---|
| 3745 | depcode=(self.context.code, self.context.code), |
---|
| 3746 | state=(REQUESTED, REQUESTED) |
---|
| 3747 | ) |
---|
| 3748 | num = 0 |
---|
| 3749 | for student in students: |
---|
| 3750 | if getUtility(IStudentsUtils).clearance_disabled_message(student): |
---|
| 3751 | continue |
---|
| 3752 | IWorkflowInfo(student).fireTransition('clear') |
---|
| 3753 | num += 1 |
---|
| 3754 | self.flash(_('%d students have been cleared.' % num)) |
---|
| 3755 | self.redirect(self.url(self.context)) |
---|
| 3756 | return |
---|
| 3757 | |
---|
| 3758 | def render(self): |
---|
| 3759 | return |
---|
| 3760 | |
---|
[10627] | 3761 | class EditScoresPage(KofaPage): |
---|
[13894] | 3762 | """Page that allows to edit batches of scores. |
---|
[10627] | 3763 | """ |
---|
| 3764 | grok.context(ICourse) |
---|
[10632] | 3765 | grok.require('waeup.editScores') |
---|
[10627] | 3766 | grok.name('edit_scores') |
---|
| 3767 | grok.template('editscorespage') |
---|
| 3768 | pnav = 1 |
---|
[13936] | 3769 | doclink = DOCLINK + '/students/browser.html#batch-editing-scores-by-lecturers' |
---|
[10627] | 3770 | |
---|
| 3771 | def label(self): |
---|
[10631] | 3772 | return '%s tickets in academic session %s' % ( |
---|
[13938] | 3773 | self.context.code, self.session_title) |
---|
[10627] | 3774 | |
---|
| 3775 | def _searchCatalog(self, session): |
---|
| 3776 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
[15243] | 3777 | # Attention: Also tickets of previous studycourses are found |
---|
[10627] | 3778 | coursetickets = cat.searchResults( |
---|
| 3779 | session=(session, session), |
---|
| 3780 | code=(self.context.code, self.context.code) |
---|
| 3781 | ) |
---|
| 3782 | return list(coursetickets) |
---|
| 3783 | |
---|
[13935] | 3784 | def _extract_uploadfile(self, uploadfile): |
---|
| 3785 | """Get a mapping of student-ids to scores. |
---|
| 3786 | |
---|
| 3787 | The mapping is constructed by reading contents from `uploadfile`. |
---|
| 3788 | |
---|
| 3789 | We expect uploadfile to be a regular CSV file with columns |
---|
| 3790 | ``student_id`` and ``score`` (other cols are ignored). |
---|
| 3791 | """ |
---|
| 3792 | result = dict() |
---|
| 3793 | data = StringIO(uploadfile.read()) # ensure we have something seekable |
---|
| 3794 | reader = csv.DictReader(data) |
---|
| 3795 | for row in reader: |
---|
| 3796 | if not 'student_id' in row or not 'score' in row: |
---|
| 3797 | continue |
---|
| 3798 | result[row['student_id']] = row['score'] |
---|
| 3799 | return result |
---|
| 3800 | |
---|
[14285] | 3801 | def _update_scores(self, form): |
---|
[13935] | 3802 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.', '') |
---|
| 3803 | error = '' |
---|
[13936] | 3804 | if 'UPDATE_FILE' in form: |
---|
| 3805 | if form['uploadfile']: |
---|
| 3806 | try: |
---|
| 3807 | formvals = self._extract_uploadfile(form['uploadfile']) |
---|
| 3808 | except: |
---|
| 3809 | self.flash( |
---|
| 3810 | _('Uploaded file contains illegal data. Ignored'), |
---|
| 3811 | type="danger") |
---|
[14283] | 3812 | return False |
---|
[13936] | 3813 | else: |
---|
[13935] | 3814 | self.flash( |
---|
[13936] | 3815 | _('No file provided.'), type="danger") |
---|
[14283] | 3816 | return False |
---|
[13936] | 3817 | else: |
---|
| 3818 | formvals = dict(zip(form['sids'], form['scores'])) |
---|
[14285] | 3819 | for ticket in self.editable_tickets: |
---|
[13935] | 3820 | score = ticket.score |
---|
| 3821 | sid = ticket.student.student_id |
---|
| 3822 | if sid not in formvals: |
---|
| 3823 | continue |
---|
| 3824 | if formvals[sid] == '': |
---|
| 3825 | score = None |
---|
| 3826 | else: |
---|
| 3827 | try: |
---|
| 3828 | score = int(formvals[sid]) |
---|
| 3829 | except ValueError: |
---|
| 3830 | error += '%s, ' % ticket.student.display_fullname |
---|
| 3831 | if ticket.score != score: |
---|
| 3832 | ticket.score = score |
---|
| 3833 | ticket.student.__parent__.logger.info( |
---|
| 3834 | '%s - %s %s/%s score updated (%s)' % ( |
---|
| 3835 | ob_class, ticket.student.student_id, |
---|
| 3836 | ticket.level, ticket.code, score) |
---|
| 3837 | ) |
---|
| 3838 | if error: |
---|
| 3839 | self.flash( |
---|
| 3840 | _('Error: Score(s) of following students have not been ' |
---|
| 3841 | 'updated (only integers are allowed): %s.' % error.strip(', ')), |
---|
| 3842 | type="danger") |
---|
[14283] | 3843 | return True |
---|
| 3844 | |
---|
[15422] | 3845 | def _validate_results(self, form): |
---|
| 3846 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.', '') |
---|
| 3847 | user = get_current_principal() |
---|
| 3848 | if user is None: |
---|
| 3849 | usertitle = 'system' |
---|
| 3850 | else: |
---|
| 3851 | usertitle = getattr(user, 'public_name', None) |
---|
| 3852 | if not usertitle: |
---|
| 3853 | usertitle = user.title |
---|
| 3854 | self.context.results_validated_by = usertitle |
---|
| 3855 | self.context.results_validation_date = datetime.utcnow() |
---|
| 3856 | self.context.results_validation_session = self.current_academic_session |
---|
| 3857 | return |
---|
| 3858 | |
---|
| 3859 | def _results_editable(self, results_validation_session, |
---|
| 3860 | current_academic_session): |
---|
| 3861 | user = get_current_principal() |
---|
| 3862 | prm = IPrincipalRoleManager(self.context) |
---|
| 3863 | roles = [x[0] for x in prm.getRolesForPrincipal(user.id)] |
---|
| 3864 | if 'waeup.local.LocalStudentsManager' in roles: |
---|
| 3865 | return True |
---|
| 3866 | if results_validation_session \ |
---|
| 3867 | and results_validation_session >= current_academic_session: |
---|
| 3868 | return False |
---|
| 3869 | return True |
---|
| 3870 | |
---|
[14283] | 3871 | def update(self, *args, **kw): |
---|
| 3872 | form = self.request.form |
---|
| 3873 | self.current_academic_session = grok.getSite()[ |
---|
| 3874 | 'configuration'].current_academic_session |
---|
[15629] | 3875 | if self.context.__parent__.__parent__.score_editing_disabled \ |
---|
| 3876 | or self.context.score_editing_disabled: |
---|
[14283] | 3877 | self.flash(_('Score editing disabled.'), type="warning") |
---|
| 3878 | self.redirect(self.url(self.context)) |
---|
[13938] | 3879 | return |
---|
[14283] | 3880 | if not self.current_academic_session: |
---|
| 3881 | self.flash(_('Current academic session not set.'), type="warning") |
---|
| 3882 | self.redirect(self.url(self.context)) |
---|
| 3883 | return |
---|
[15422] | 3884 | vs = self.context.results_validation_session |
---|
| 3885 | if not self._results_editable(vs, self.current_academic_session): |
---|
| 3886 | self.flash( |
---|
| 3887 | _('Course results have already been ' |
---|
| 3888 | 'validated and can no longer be changed.'), |
---|
| 3889 | type="danger") |
---|
| 3890 | self.redirect(self.url(self.context)) |
---|
| 3891 | return |
---|
[14283] | 3892 | self.session_title = academic_sessions_vocab.getTerm( |
---|
| 3893 | self.current_academic_session).title |
---|
| 3894 | self.tickets = self._searchCatalog(self.current_academic_session) |
---|
| 3895 | if not self.tickets: |
---|
| 3896 | self.flash(_('No student found.'), type="warning") |
---|
| 3897 | self.redirect(self.url(self.context)) |
---|
| 3898 | return |
---|
[14286] | 3899 | self.editable_tickets = [ |
---|
| 3900 | ticket for ticket in self.tickets if ticket.editable_by_lecturer] |
---|
[15422] | 3901 | if not 'UPDATE_TABLE' in form and not 'UPDATE_FILE' in form\ |
---|
| 3902 | and not 'VALIDATE_RESULTS' in form: |
---|
[14283] | 3903 | return |
---|
[15422] | 3904 | if 'VALIDATE_RESULTS' in form: |
---|
| 3905 | if vs and vs >= self.current_academic_session: |
---|
| 3906 | self.flash( |
---|
| 3907 | _('Course results have already been validated.'), |
---|
| 3908 | type="danger") |
---|
[16007] | 3909 | for ticket in self.tickets: |
---|
| 3910 | if ticket.total_score is not None: |
---|
| 3911 | break |
---|
| 3912 | self.flash( |
---|
| 3913 | _('No score has been entered.'), |
---|
| 3914 | type="danger") |
---|
[15422] | 3915 | return |
---|
| 3916 | self._validate_results(form) |
---|
| 3917 | self.flash(_('You successfully validated the course results.')) |
---|
| 3918 | self.redirect(self.url(self.context)) |
---|
| 3919 | return |
---|
[14284] | 3920 | if not self.editable_tickets: |
---|
[14283] | 3921 | return |
---|
[14285] | 3922 | success = self._update_scores(form) |
---|
[14283] | 3923 | if success: |
---|
| 3924 | self.flash(_('You successfully updated course results.')) |
---|
[10627] | 3925 | return |
---|
| 3926 | |
---|
[13894] | 3927 | class DownloadScoresView(UtilityView, grok.View): |
---|
| 3928 | """View that exports scores. |
---|
| 3929 | """ |
---|
| 3930 | grok.context(ICourse) |
---|
| 3931 | grok.require('waeup.editScores') |
---|
| 3932 | grok.name('download_scores') |
---|
| 3933 | |
---|
[15422] | 3934 | def _results_editable(self, results_validation_session, |
---|
| 3935 | current_academic_session): |
---|
| 3936 | user = get_current_principal() |
---|
| 3937 | prm = IPrincipalRoleManager(self.context) |
---|
| 3938 | roles = [x[0] for x in prm.getRolesForPrincipal(user.id)] |
---|
| 3939 | if 'waeup.local.LocalStudentsManager' in roles: |
---|
| 3940 | return True |
---|
| 3941 | if results_validation_session \ |
---|
| 3942 | and results_validation_session >= current_academic_session: |
---|
| 3943 | return False |
---|
| 3944 | return True |
---|
| 3945 | |
---|
[13894] | 3946 | def update(self): |
---|
| 3947 | self.current_academic_session = grok.getSite()[ |
---|
| 3948 | 'configuration'].current_academic_session |
---|
[15629] | 3949 | if self.context.__parent__.__parent__.score_editing_disabled \ |
---|
| 3950 | or self.context.score_editing_disabled: |
---|
[13894] | 3951 | self.flash(_('Score editing disabled.'), type="warning") |
---|
| 3952 | self.redirect(self.url(self.context)) |
---|
| 3953 | return |
---|
| 3954 | if not self.current_academic_session: |
---|
| 3955 | self.flash(_('Current academic session not set.'), type="warning") |
---|
| 3956 | self.redirect(self.url(self.context)) |
---|
| 3957 | return |
---|
[15422] | 3958 | vs = self.context.results_validation_session |
---|
| 3959 | if not self._results_editable(vs, self.current_academic_session): |
---|
| 3960 | self.flash( |
---|
| 3961 | _('Course results have already been ' |
---|
| 3962 | 'validated and can no longer be changed.'), |
---|
| 3963 | type="danger") |
---|
| 3964 | self.redirect(self.url(self.context)) |
---|
| 3965 | return |
---|
[13894] | 3966 | site = grok.getSite() |
---|
| 3967 | exporter = getUtility(ICSVExporter, name='lecturer') |
---|
| 3968 | self.csv = exporter.export_filtered(site, filepath=None, |
---|
| 3969 | catalog='coursetickets', |
---|
| 3970 | session=self.current_academic_session, |
---|
| 3971 | level=None, |
---|
| 3972 | code=self.context.code) |
---|
| 3973 | return |
---|
| 3974 | |
---|
| 3975 | def render(self): |
---|
| 3976 | filename = 'results_%s_%s.csv' % ( |
---|
| 3977 | self.context.code, self.current_academic_session) |
---|
| 3978 | self.response.setHeader( |
---|
| 3979 | 'Content-Type', 'text/csv; charset=UTF-8') |
---|
| 3980 | self.response.setHeader( |
---|
| 3981 | 'Content-Disposition:', 'attachment; filename="%s' % filename) |
---|
| 3982 | return self.csv |
---|
| 3983 | |
---|
[13898] | 3984 | class ExportPDFScoresSlip(UtilityView, grok.View, |
---|
| 3985 | LocalRoleAssignmentUtilityView): |
---|
| 3986 | """Deliver a PDF slip of course tickets for a lecturer. |
---|
| 3987 | """ |
---|
| 3988 | grok.context(ICourse) |
---|
| 3989 | grok.name('coursetickets.pdf') |
---|
[15422] | 3990 | grok.require('waeup.showStudents') |
---|
[13898] | 3991 | |
---|
[15426] | 3992 | def update(self): |
---|
| 3993 | self.current_academic_session = grok.getSite()[ |
---|
| 3994 | 'configuration'].current_academic_session |
---|
| 3995 | if not self.current_academic_session: |
---|
| 3996 | self.flash(_('Current academic session not set.'), type="danger") |
---|
| 3997 | self.redirect(self.url(self.context)) |
---|
| 3998 | return |
---|
| 3999 | |
---|
[15246] | 4000 | @property |
---|
| 4001 | def note(self): |
---|
| 4002 | return |
---|
| 4003 | |
---|
[14314] | 4004 | def data(self, session): |
---|
[13898] | 4005 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
[15243] | 4006 | # Attention: Also tickets of previous studycourses are found |
---|
[13898] | 4007 | coursetickets = cat.searchResults( |
---|
| 4008 | session=(session, session), |
---|
| 4009 | code=(self.context.code, self.context.code) |
---|
| 4010 | ) |
---|
[13908] | 4011 | header = [[_('Matric No.'), |
---|
[13898] | 4012 | _('Reg. No.'), |
---|
| 4013 | _('Fullname'), |
---|
| 4014 | _('Status'), |
---|
| 4015 | _('Course of Studies'), |
---|
| 4016 | _('Level'), |
---|
| 4017 | _('Score') ],] |
---|
[13908] | 4018 | tickets = [] |
---|
[13898] | 4019 | for ticket in list(coursetickets): |
---|
| 4020 | row = [ticket.student.matric_number, |
---|
| 4021 | ticket.student.reg_number, |
---|
| 4022 | ticket.student.display_fullname, |
---|
| 4023 | ticket.student.translated_state, |
---|
| 4024 | ticket.student.certcode, |
---|
| 4025 | ticket.level, |
---|
| 4026 | ticket.score] |
---|
[13908] | 4027 | tickets.append(row) |
---|
[14314] | 4028 | return header + sorted(tickets, key=lambda value: value[0]), None |
---|
[13898] | 4029 | |
---|
| 4030 | def render(self): |
---|
| 4031 | lecturers = [i['user_title'] for i in self.getUsersWithLocalRoles() |
---|
| 4032 | if i['local_role'] == 'waeup.local.Lecturer'] |
---|
[15865] | 4033 | lecturers = sorted(lecturers) |
---|
[13898] | 4034 | lecturers = ', '.join(lecturers) |
---|
| 4035 | students_utils = getUtility(IStudentsUtils) |
---|
| 4036 | return students_utils.renderPDFCourseticketsOverview( |
---|
[15426] | 4037 | self, 'coursetickets', self.current_academic_session, |
---|
| 4038 | self.data(self.current_academic_session), lecturers, |
---|
[15423] | 4039 | 'landscape', 90, self.note) |
---|
[13898] | 4040 | |
---|
[15423] | 4041 | class ExportAttendanceSlip(UtilityView, grok.View, |
---|
| 4042 | LocalRoleAssignmentUtilityView): |
---|
| 4043 | """Deliver a PDF slip of course tickets in attendance sheet format. |
---|
| 4044 | """ |
---|
| 4045 | grok.context(ICourse) |
---|
| 4046 | grok.name('attendance.pdf') |
---|
| 4047 | grok.require('waeup.showStudents') |
---|
| 4048 | |
---|
[15426] | 4049 | def update(self): |
---|
| 4050 | self.current_academic_session = grok.getSite()[ |
---|
| 4051 | 'configuration'].current_academic_session |
---|
| 4052 | if not self.current_academic_session: |
---|
| 4053 | self.flash(_('Current academic session not set.'), type="danger") |
---|
| 4054 | self.redirect(self.url(self.context)) |
---|
| 4055 | return |
---|
| 4056 | |
---|
[15423] | 4057 | @property |
---|
| 4058 | def note(self): |
---|
| 4059 | return |
---|
| 4060 | |
---|
| 4061 | def data(self, session): |
---|
| 4062 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
| 4063 | # Attention: Also tickets of previous studycourses are found |
---|
| 4064 | coursetickets = cat.searchResults( |
---|
| 4065 | session=(session, session), |
---|
| 4066 | code=(self.context.code, self.context.code) |
---|
| 4067 | ) |
---|
[15526] | 4068 | header = [[_('S/N'), |
---|
[15541] | 4069 | _('Matric No.'), |
---|
[15538] | 4070 | _('Name'), |
---|
[15423] | 4071 | _('Level'), |
---|
[15542] | 4072 | _('Course of\nStudies'), |
---|
[15423] | 4073 | _('Booklet No.'), |
---|
| 4074 | _('Signature'), |
---|
| 4075 | ],] |
---|
| 4076 | tickets = [] |
---|
[15526] | 4077 | sn = 1 |
---|
| 4078 | ctlist = sorted(list(coursetickets), |
---|
[15535] | 4079 | key=lambda value: str(value.student.certcode) + |
---|
| 4080 | str(value.student.matric_number)) |
---|
[15642] | 4081 | # In AAUE only editable appear on the attendance sheet. Hopefully |
---|
| 4082 | # this holds for other universities too. |
---|
| 4083 | editable_tickets = [ticket for ticket in ctlist |
---|
| 4084 | if ticket.editable_by_lecturer] |
---|
| 4085 | for ticket in editable_tickets: |
---|
[15626] | 4086 | name = textwrap.fill(ticket.student.display_fullname, 20) |
---|
[15526] | 4087 | row = [sn, |
---|
[15423] | 4088 | ticket.student.matric_number, |
---|
[15624] | 4089 | name, |
---|
[15423] | 4090 | ticket.level, |
---|
| 4091 | ticket.student.certcode, |
---|
[15624] | 4092 | 20 * ' ', |
---|
[15544] | 4093 | 27 * ' ', |
---|
[15423] | 4094 | ] |
---|
| 4095 | tickets.append(row) |
---|
[15526] | 4096 | sn += 1 |
---|
| 4097 | return header + tickets, None |
---|
[15423] | 4098 | |
---|
| 4099 | def render(self): |
---|
| 4100 | lecturers = [i['user_title'] for i in self.getUsersWithLocalRoles() |
---|
| 4101 | if i['local_role'] == 'waeup.local.Lecturer'] |
---|
| 4102 | lecturers = ', '.join(lecturers) |
---|
| 4103 | students_utils = getUtility(IStudentsUtils) |
---|
| 4104 | return students_utils.renderPDFCourseticketsOverview( |
---|
[15426] | 4105 | self, 'attendance', self.current_academic_session, |
---|
| 4106 | self.data(self.current_academic_session), |
---|
[15526] | 4107 | lecturers, '', 65, self.note) |
---|
[15423] | 4108 | |
---|
[9813] | 4109 | class ExportJobContainerOverview(KofaPage): |
---|
[9835] | 4110 | """Page that lists active student data export jobs and provides links |
---|
| 4111 | to discard or download CSV files. |
---|
| 4112 | |
---|
[9797] | 4113 | """ |
---|
[9813] | 4114 | grok.context(VirtualExportJobContainer) |
---|
[9797] | 4115 | grok.require('waeup.showStudents') |
---|
| 4116 | grok.name('index.html') |
---|
| 4117 | grok.template('exportjobsindex') |
---|
[9813] | 4118 | label = _('Student Data Exports') |
---|
[9797] | 4119 | pnav = 1 |
---|
[12910] | 4120 | doclink = DOCLINK + '/datacenter/export.html#student-data-exporters' |
---|
[9797] | 4121 | |
---|
[15545] | 4122 | def update(self, CREATE1=None, CREATE2=None, DISCARD=None, job_id=None): |
---|
| 4123 | if CREATE1: |
---|
[9836] | 4124 | self.redirect(self.url('@@exportconfig')) |
---|
[9797] | 4125 | return |
---|
[15545] | 4126 | if CREATE2: |
---|
| 4127 | self.redirect(self.url('@@exportselected')) |
---|
| 4128 | return |
---|
[9797] | 4129 | if DISCARD and job_id: |
---|
| 4130 | entry = self.context.entry_from_job_id(job_id) |
---|
| 4131 | self.context.delete_export_entry(entry) |
---|
[9836] | 4132 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 4133 | self.context.logger.info( |
---|
| 4134 | '%s - discarded: job_id=%s' % (ob_class, job_id)) |
---|
[9819] | 4135 | self.flash(_('Discarded export') + ' %s' % job_id) |
---|
[9822] | 4136 | self.entries = doll_up(self, user=self.request.principal.id) |
---|
[9797] | 4137 | return |
---|
| 4138 | |
---|
[9833] | 4139 | class ExportJobContainerJobConfig(KofaPage): |
---|
[9797] | 4140 | """Page that configures a students export job. |
---|
[9833] | 4141 | |
---|
| 4142 | This is a baseclass. |
---|
[9797] | 4143 | """ |
---|
[9833] | 4144 | grok.baseclass() |
---|
[9797] | 4145 | grok.require('waeup.showStudents') |
---|
[9836] | 4146 | grok.template('exportconfig') |
---|
[9833] | 4147 | label = _('Configure student data export') |
---|
[9797] | 4148 | pnav = 1 |
---|
[9835] | 4149 | redirect_target = '' |
---|
[12901] | 4150 | doclink = DOCLINK + '/datacenter/export.html#student-data-exporters' |
---|
[9797] | 4151 | |
---|
| 4152 | def _set_session_values(self): |
---|
| 4153 | vocab_terms = academic_sessions_vocab.by_value.values() |
---|
[15042] | 4154 | self.sessions = [(_('All Sessions'), 'all')] |
---|
| 4155 | self.sessions += sorted( |
---|
[9797] | 4156 | [(x.title, x.token) for x in vocab_terms], reverse=True) |
---|
| 4157 | return |
---|
| 4158 | |
---|
| 4159 | def _set_level_values(self): |
---|
| 4160 | vocab_terms = course_levels.by_value.values() |
---|
[15042] | 4161 | self.levels = [(_('All Levels'), 'all')] |
---|
| 4162 | self.levels += sorted( |
---|
[9797] | 4163 | [(x.title, x.token) for x in vocab_terms]) |
---|
| 4164 | return |
---|
| 4165 | |
---|
[15546] | 4166 | def _set_semesters_values(self): |
---|
| 4167 | utils = getUtility(IKofaUtils) |
---|
| 4168 | self.semesters =[(_('All Semesters'), 'all')] |
---|
| 4169 | self.semesters += sorted([(value, key) for key, value in |
---|
| 4170 | utils.SEMESTER_DICT.items()]) |
---|
| 4171 | return |
---|
| 4172 | |
---|
[9803] | 4173 | def _set_mode_values(self): |
---|
| 4174 | utils = getUtility(IKofaUtils) |
---|
[15042] | 4175 | self.modes =[(_('All Modes'), 'all')] |
---|
| 4176 | self.modes += sorted([(value, key) for key, value in |
---|
[9838] | 4177 | utils.STUDY_MODES_DICT.items()]) |
---|
[9803] | 4178 | return |
---|
| 4179 | |
---|
[15042] | 4180 | def _set_paycat_values(self): |
---|
| 4181 | utils = getUtility(IKofaUtils) |
---|
| 4182 | self.paycats =[(_('All Payment Categories'), 'all')] |
---|
| 4183 | self.paycats += sorted([(value, key) for key, value in |
---|
| 4184 | utils.PAYMENT_CATEGORIES.items()]) |
---|
| 4185 | return |
---|
| 4186 | |
---|
[9804] | 4187 | def _set_exporter_values(self): |
---|
| 4188 | # We provide all student exporters, nothing else, yet. |
---|
[15277] | 4189 | # Bursary, Department or Accommodation Officers don't |
---|
| 4190 | # have the general exportData |
---|
| 4191 | # permission and are only allowed to export bursary, payments |
---|
| 4192 | # overview or accommodation data respectively. |
---|
| 4193 | # This is the only place where waeup.exportAccommodationData, |
---|
[10279] | 4194 | # waeup.exportBursaryData and waeup.exportPaymentsOverview |
---|
| 4195 | # are used. |
---|
| 4196 | exporters = [] |
---|
[10248] | 4197 | if not checkPermission('waeup.exportData', self.context): |
---|
[10279] | 4198 | if checkPermission('waeup.exportBursaryData', self.context): |
---|
| 4199 | exporters += [('Bursary Data', 'bursary')] |
---|
| 4200 | if checkPermission('waeup.exportPaymentsOverview', self.context): |
---|
[15051] | 4201 | exporters += [('School Fee Payments Overview', |
---|
| 4202 | 'sfpaymentsoverview'), |
---|
| 4203 | ('Session Payments Overview', |
---|
| 4204 | 'sessionpaymentsoverview')] |
---|
[15277] | 4205 | if checkPermission('waeup.exportAccommodationData', self.context): |
---|
| 4206 | exporters += [('Bed Tickets', 'bedtickets'), |
---|
| 4207 | ('Accommodation Payments', |
---|
| 4208 | 'accommodationpayments')] |
---|
[10279] | 4209 | self.exporters = exporters |
---|
[10248] | 4210 | return |
---|
[12104] | 4211 | STUDENT_EXPORTER_NAMES = getUtility( |
---|
| 4212 | IStudentsUtils).STUDENT_EXPORTER_NAMES |
---|
| 4213 | for name in STUDENT_EXPORTER_NAMES: |
---|
[9804] | 4214 | util = getUtility(ICSVExporter, name=name) |
---|
| 4215 | exporters.append((util.title, name),) |
---|
| 4216 | self.exporters = exporters |
---|
[10247] | 4217 | return |
---|
[9804] | 4218 | |
---|
[9833] | 4219 | @property |
---|
[12632] | 4220 | def faccode(self): |
---|
| 4221 | return None |
---|
| 4222 | |
---|
| 4223 | @property |
---|
[9833] | 4224 | def depcode(self): |
---|
| 4225 | return None |
---|
| 4226 | |
---|
[9842] | 4227 | @property |
---|
| 4228 | def certcode(self): |
---|
| 4229 | return None |
---|
| 4230 | |
---|
[9804] | 4231 | def update(self, START=None, session=None, level=None, mode=None, |
---|
[15042] | 4232 | payments_start=None, payments_end=None, ct_level=None, |
---|
[15546] | 4233 | ct_session=None, ct_semester=None, paycat=None, |
---|
[15918] | 4234 | paysession=None, level_session=None, exporter=None): |
---|
[9797] | 4235 | self._set_session_values() |
---|
| 4236 | self._set_level_values() |
---|
[9803] | 4237 | self._set_mode_values() |
---|
[15042] | 4238 | self._set_paycat_values() |
---|
[9804] | 4239 | self._set_exporter_values() |
---|
[15546] | 4240 | self._set_semesters_values() |
---|
[9797] | 4241 | if START is None: |
---|
| 4242 | return |
---|
[13201] | 4243 | ena = exports_not_allowed(self) |
---|
| 4244 | if ena: |
---|
| 4245 | self.flash(ena, type='danger') |
---|
[13198] | 4246 | return |
---|
[11730] | 4247 | if payments_start or payments_end: |
---|
| 4248 | date_format = '%d/%m/%Y' |
---|
| 4249 | try: |
---|
[13935] | 4250 | datetime.strptime(payments_start, date_format) |
---|
| 4251 | datetime.strptime(payments_end, date_format) |
---|
[11730] | 4252 | except ValueError: |
---|
| 4253 | self.flash(_('Payment dates do not match format d/m/Y.'), |
---|
| 4254 | type="danger") |
---|
| 4255 | return |
---|
[9797] | 4256 | if session == 'all': |
---|
| 4257 | session=None |
---|
| 4258 | if level == 'all': |
---|
| 4259 | level = None |
---|
[9803] | 4260 | if mode == 'all': |
---|
| 4261 | mode = None |
---|
[12632] | 4262 | if (mode, |
---|
| 4263 | level, |
---|
| 4264 | session, |
---|
| 4265 | self.faccode, |
---|
| 4266 | self.depcode, |
---|
| 4267 | self.certcode) == (None, None, None, None, None, None): |
---|
[9933] | 4268 | # Export all students including those without certificate |
---|
[15042] | 4269 | job_id = self.context.start_export_job(exporter, |
---|
| 4270 | self.request.principal.id, |
---|
| 4271 | payments_start = payments_start, |
---|
| 4272 | payments_end = payments_end, |
---|
| 4273 | paycat=paycat, |
---|
[15055] | 4274 | paysession=paysession, |
---|
[15042] | 4275 | ct_level = ct_level, |
---|
| 4276 | ct_session = ct_session, |
---|
[15546] | 4277 | ct_semester = ct_semester, |
---|
[15918] | 4278 | level_session=level_session, |
---|
[15042] | 4279 | ) |
---|
[9933] | 4280 | else: |
---|
[15042] | 4281 | job_id = self.context.start_export_job(exporter, |
---|
| 4282 | self.request.principal.id, |
---|
| 4283 | current_session=session, |
---|
| 4284 | current_level=level, |
---|
| 4285 | current_mode=mode, |
---|
| 4286 | faccode=self.faccode, |
---|
| 4287 | depcode=self.depcode, |
---|
| 4288 | certcode=self.certcode, |
---|
| 4289 | payments_start = payments_start, |
---|
| 4290 | payments_end = payments_end, |
---|
| 4291 | paycat=paycat, |
---|
[15055] | 4292 | paysession=paysession, |
---|
[15042] | 4293 | ct_level = ct_level, |
---|
[15546] | 4294 | ct_session = ct_session, |
---|
[15918] | 4295 | ct_semester = ct_semester, |
---|
| 4296 | level_session=level_session,) |
---|
[9836] | 4297 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 4298 | self.context.logger.info( |
---|
[15918] | 4299 | '%s - exported: %s (%s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s, %s), job_id=%s' |
---|
[12632] | 4300 | % (ob_class, exporter, session, level, mode, self.faccode, |
---|
[15042] | 4301 | self.depcode, self.certcode, payments_start, payments_end, |
---|
[15918] | 4302 | ct_level, ct_session, paycat, paysession, level_session, job_id)) |
---|
[9833] | 4303 | self.flash(_('Export started for students with') + |
---|
| 4304 | ' current_session=%s, current_level=%s, study_mode=%s' % ( |
---|
| 4305 | session, level, mode)) |
---|
[9835] | 4306 | self.redirect(self.url(self.redirect_target)) |
---|
[9797] | 4307 | return |
---|
| 4308 | |
---|
[9822] | 4309 | class ExportJobContainerDownload(ExportCSVView): |
---|
[9835] | 4310 | """Page that downloads a students export csv file. |
---|
| 4311 | |
---|
[9797] | 4312 | """ |
---|
[9813] | 4313 | grok.context(VirtualExportJobContainer) |
---|
[9797] | 4314 | grok.require('waeup.showStudents') |
---|
[9833] | 4315 | |
---|
| 4316 | class DatacenterExportJobContainerJobConfig(ExportJobContainerJobConfig): |
---|
| 4317 | """Page that configures a students export job in datacenter. |
---|
| 4318 | |
---|
| 4319 | """ |
---|
[15545] | 4320 | grok.name('exportconfig') |
---|
[9833] | 4321 | grok.context(IDataCenter) |
---|
[9835] | 4322 | redirect_target = '@@export' |
---|
[9833] | 4323 | |
---|
[12518] | 4324 | class DatacenterExportJobContainerSelectStudents(ExportJobContainerJobConfig): |
---|
| 4325 | """Page that configures a students export job in datacenter. |
---|
| 4326 | |
---|
| 4327 | """ |
---|
| 4328 | grok.name('exportselected') |
---|
| 4329 | grok.context(IDataCenter) |
---|
| 4330 | redirect_target = '@@export' |
---|
| 4331 | grok.template('exportselected') |
---|
| 4332 | |
---|
| 4333 | def update(self, START=None, students=None, exporter=None): |
---|
| 4334 | self._set_exporter_values() |
---|
| 4335 | if START is None: |
---|
| 4336 | return |
---|
[13201] | 4337 | ena = exports_not_allowed(self) |
---|
| 4338 | if ena: |
---|
| 4339 | self.flash(ena, type='danger') |
---|
[13200] | 4340 | return |
---|
[12518] | 4341 | try: |
---|
| 4342 | ids = students.replace(',', ' ').split() |
---|
| 4343 | except: |
---|
| 4344 | self.flash(sys.exc_info()[1]) |
---|
| 4345 | self.redirect(self.url(self.redirect_target)) |
---|
| 4346 | return |
---|
| 4347 | job_id = self.context.start_export_job( |
---|
| 4348 | exporter, self.request.principal.id, selected=ids) |
---|
| 4349 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 4350 | self.context.logger.info( |
---|
| 4351 | '%s - selected students exported: %s, job_id=%s' % |
---|
| 4352 | (ob_class, exporter, job_id)) |
---|
| 4353 | self.flash(_('Export of selected students started.')) |
---|
| 4354 | self.redirect(self.url(self.redirect_target)) |
---|
| 4355 | return |
---|
| 4356 | |
---|
[15545] | 4357 | class FacultiesExportJobContainerJobConfig( |
---|
| 4358 | DatacenterExportJobContainerJobConfig): |
---|
[10247] | 4359 | """Page that configures a students export job in facultiescontainer. |
---|
| 4360 | |
---|
| 4361 | """ |
---|
| 4362 | grok.context(VirtualFacultiesExportJobContainer) |
---|
[15545] | 4363 | redirect_target = '' |
---|
[10247] | 4364 | |
---|
[15545] | 4365 | class FacultiesExportJobContainerSelectStudents( |
---|
| 4366 | DatacenterExportJobContainerSelectStudents): |
---|
| 4367 | """Page that configures a students export job in facultiescontainer. |
---|
[12632] | 4368 | |
---|
[15545] | 4369 | """ |
---|
| 4370 | grok.context(VirtualFacultiesExportJobContainer) |
---|
| 4371 | redirect_target = '' |
---|
| 4372 | |
---|
| 4373 | class FacultyExportJobContainerJobConfig(DatacenterExportJobContainerJobConfig): |
---|
[12632] | 4374 | """Page that configures a students export job in faculties. |
---|
| 4375 | |
---|
| 4376 | """ |
---|
| 4377 | grok.context(VirtualFacultyExportJobContainer) |
---|
[15545] | 4378 | redirect_target = '' |
---|
[12632] | 4379 | |
---|
| 4380 | @property |
---|
| 4381 | def faccode(self): |
---|
| 4382 | return self.context.__parent__.code |
---|
| 4383 | |
---|
[15545] | 4384 | class DepartmentExportJobContainerJobConfig( |
---|
| 4385 | DatacenterExportJobContainerJobConfig): |
---|
[9833] | 4386 | """Page that configures a students export job in departments. |
---|
| 4387 | |
---|
| 4388 | """ |
---|
| 4389 | grok.context(VirtualDepartmentExportJobContainer) |
---|
[15545] | 4390 | redirect_target = '' |
---|
[9833] | 4391 | |
---|
| 4392 | @property |
---|
| 4393 | def depcode(self): |
---|
[9835] | 4394 | return self.context.__parent__.code |
---|
[9842] | 4395 | |
---|
[15545] | 4396 | class CertificateExportJobContainerJobConfig( |
---|
| 4397 | DatacenterExportJobContainerJobConfig): |
---|
[9842] | 4398 | """Page that configures a students export job for certificates. |
---|
| 4399 | |
---|
| 4400 | """ |
---|
| 4401 | grok.context(VirtualCertificateExportJobContainer) |
---|
[9843] | 4402 | grok.template('exportconfig_certificate') |
---|
[15545] | 4403 | redirect_target = '' |
---|
[9842] | 4404 | |
---|
| 4405 | @property |
---|
| 4406 | def certcode(self): |
---|
| 4407 | return self.context.__parent__.code |
---|
[9843] | 4408 | |
---|
[15545] | 4409 | class CourseExportJobContainerJobConfig( |
---|
| 4410 | DatacenterExportJobContainerJobConfig): |
---|
[9843] | 4411 | """Page that configures a students export job for courses. |
---|
| 4412 | |
---|
| 4413 | In contrast to department or certificate student data exports the |
---|
| 4414 | coursetickets_catalog is searched here. Therefore the update |
---|
| 4415 | method from the base class is customized. |
---|
| 4416 | """ |
---|
| 4417 | grok.context(VirtualCourseExportJobContainer) |
---|
| 4418 | grok.template('exportconfig_course') |
---|
[15545] | 4419 | redirect_target = '' |
---|
[9843] | 4420 | |
---|
| 4421 | def _set_exporter_values(self): |
---|
[13894] | 4422 | # We provide only the 'coursetickets' and 'lecturer' exporter |
---|
| 4423 | # but can add more. |
---|
[9843] | 4424 | exporters = [] |
---|
[13894] | 4425 | for name in ('coursetickets', 'lecturer'): |
---|
[9843] | 4426 | util = getUtility(ICSVExporter, name=name) |
---|
| 4427 | exporters.append((util.title, name),) |
---|
| 4428 | self.exporters = exporters |
---|
[15545] | 4429 | return |
---|
[9843] | 4430 | |
---|
[13766] | 4431 | def _set_session_values(self): |
---|
| 4432 | # We allow only current academic session |
---|
| 4433 | academic_session = grok.getSite()['configuration'].current_academic_session |
---|
| 4434 | if not academic_session: |
---|
| 4435 | self.sessions = [] |
---|
| 4436 | return |
---|
| 4437 | x = academic_sessions_vocab.getTerm(academic_session) |
---|
| 4438 | self.sessions = [(x.title, x.token)] |
---|
| 4439 | return |
---|
| 4440 | |
---|
[9843] | 4441 | def update(self, START=None, session=None, level=None, mode=None, |
---|
| 4442 | exporter=None): |
---|
[15545] | 4443 | if not checkPermission('waeup.exportData', self.context): |
---|
| 4444 | self.flash(_('Not permitted.'), type='danger') |
---|
| 4445 | self.redirect(self.url(self.context)) |
---|
| 4446 | return |
---|
[9843] | 4447 | self._set_session_values() |
---|
| 4448 | self._set_level_values() |
---|
| 4449 | self._set_mode_values() |
---|
| 4450 | self._set_exporter_values() |
---|
[13766] | 4451 | if not self.sessions: |
---|
| 4452 | self.flash( |
---|
| 4453 | _('Academic session not set. ' |
---|
| 4454 | 'Please contact the administrator.'), |
---|
| 4455 | type='danger') |
---|
| 4456 | self.redirect(self.url(self.context)) |
---|
| 4457 | return |
---|
[9843] | 4458 | if START is None: |
---|
| 4459 | return |
---|
[13201] | 4460 | ena = exports_not_allowed(self) |
---|
| 4461 | if ena: |
---|
| 4462 | self.flash(ena, type='danger') |
---|
[13200] | 4463 | return |
---|
[9843] | 4464 | if session == 'all': |
---|
[10016] | 4465 | session = None |
---|
[9843] | 4466 | if level == 'all': |
---|
| 4467 | level = None |
---|
| 4468 | job_id = self.context.start_export_job(exporter, |
---|
| 4469 | self.request.principal.id, |
---|
| 4470 | # Use a different catalog and |
---|
| 4471 | # pass different keywords than |
---|
| 4472 | # for the (default) students_catalog |
---|
[9845] | 4473 | catalog='coursetickets', |
---|
[9843] | 4474 | session=session, |
---|
| 4475 | level=level, |
---|
| 4476 | code=self.context.__parent__.code) |
---|
| 4477 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 4478 | self.context.logger.info( |
---|
| 4479 | '%s - exported: %s (%s, %s, %s), job_id=%s' |
---|
| 4480 | % (ob_class, exporter, session, level, |
---|
| 4481 | self.context.__parent__.code, job_id)) |
---|
| 4482 | self.flash(_('Export started for course tickets with') + |
---|
| 4483 | ' level_session=%s, level=%s' % ( |
---|
| 4484 | session, level)) |
---|
| 4485 | self.redirect(self.url(self.redirect_target)) |
---|
[13935] | 4486 | return |
---|