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