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