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