[7191] | 1 | ## $Id: browser.py 11254 2014-02-22 15:46:03Z uli $ |
---|
| 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 | """ |
---|
[7006] | 20 | import sys |
---|
[6621] | 21 | import grok |
---|
[10458] | 22 | import pytz |
---|
[7275] | 23 | from urllib import urlencode |
---|
[7256] | 24 | from datetime import datetime |
---|
[7015] | 25 | from zope.event import notify |
---|
[7723] | 26 | from zope.i18n import translate |
---|
[6996] | 27 | from zope.catalog.interfaces import ICatalog |
---|
[7386] | 28 | from zope.component import queryUtility, getUtility, createObject |
---|
[9467] | 29 | from zope.schema.interfaces import ConstraintNotSatisfied, RequiredMissing |
---|
[7386] | 30 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
[10080] | 31 | from zope.security import checkPermission |
---|
[6621] | 32 | from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState |
---|
[7811] | 33 | from waeup.kofa.accesscodes import ( |
---|
[8420] | 34 | invalidate_accesscode, get_access_code) |
---|
[7811] | 35 | from waeup.kofa.accesscodes.workflow import USED |
---|
[9217] | 36 | from waeup.kofa.browser.layout import ( |
---|
[7819] | 37 | KofaPage, KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage, |
---|
[9217] | 38 | KofaForm, NullValidator) |
---|
[9797] | 39 | from waeup.kofa.browser.breadcrumbs import Breadcrumb |
---|
[9822] | 40 | from waeup.kofa.browser.pages import ContactAdminForm, ExportCSVView, doll_up |
---|
[7811] | 41 | from waeup.kofa.browser.layout import jsaction, action, UtilityView |
---|
[8779] | 42 | from waeup.kofa.browser.interfaces import ICaptchaManager |
---|
[9797] | 43 | from waeup.kofa.hostels.hostel import NOT_OCCUPIED |
---|
[7811] | 44 | from waeup.kofa.interfaces import ( |
---|
[7819] | 45 | IKofaObject, IUserAccount, IExtFileStore, IPasswordValidator, IContactForm, |
---|
[9797] | 46 | IKofaUtils, IUniversity, IObjectHistory, academic_sessions, ICSVExporter, |
---|
[9833] | 47 | academic_sessions_vocab, IJobManager, IDataCenter) |
---|
[7811] | 48 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8170] | 49 | from waeup.kofa.widgets.datewidget import ( |
---|
| 50 | FriendlyDateWidget, FriendlyDateDisplayWidget, |
---|
| 51 | FriendlyDatetimeDisplayWidget) |
---|
[9797] | 52 | from waeup.kofa.mandates.mandate import PasswordMandate |
---|
[9806] | 53 | from waeup.kofa.university.interfaces import ( |
---|
| 54 | IDepartment, ICertificate, ICourse) |
---|
[9797] | 55 | from waeup.kofa.university.department import ( |
---|
| 56 | VirtualDepartmentExportJobContainer,) |
---|
[10247] | 57 | from waeup.kofa.university.facultiescontainer import ( |
---|
| 58 | VirtualFacultiesExportJobContainer, FacultiesContainer) |
---|
[9842] | 59 | from waeup.kofa.university.certificate import ( |
---|
| 60 | VirtualCertificateExportJobContainer,) |
---|
[9843] | 61 | from waeup.kofa.university.course import ( |
---|
| 62 | VirtualCourseExportJobContainer,) |
---|
[9797] | 63 | from waeup.kofa.university.vocabularies import course_levels |
---|
[9813] | 64 | from waeup.kofa.utils.batching import VirtualExportJobContainer |
---|
[10458] | 65 | from waeup.kofa.utils.helpers import get_current_principal, to_timezone, now |
---|
[7868] | 66 | from waeup.kofa.widgets.restwidget import ReSTDisplayWidget |
---|
[7811] | 67 | from waeup.kofa.students.interfaces import ( |
---|
[7993] | 68 | IStudentsContainer, IStudent, |
---|
| 69 | IUGStudentClearance,IPGStudentClearance, |
---|
[9563] | 70 | IStudentPersonal, IStudentPersonalEdit, IStudentBase, IStudentStudyCourse, |
---|
[10250] | 71 | IStudentStudyCourseTransfer, IStudentStudyCourseTranscript, |
---|
[7538] | 72 | IStudentAccommodation, IStudentStudyLevel, |
---|
[6877] | 73 | ICourseTicket, ICourseTicketAdd, IStudentPaymentsContainer, |
---|
[9864] | 74 | IStudentOnlinePayment, IStudentPreviousPayment, IStudentBalancePayment, |
---|
[10458] | 75 | IBedTicket, IStudentsUtils, IStudentRequestPW, IStudentTranscript |
---|
[6621] | 76 | ) |
---|
[9806] | 77 | from waeup.kofa.students.catalog import search, StudentQueryResultItem |
---|
[9804] | 78 | from waeup.kofa.students.export import EXPORTER_NAMES |
---|
[9797] | 79 | from waeup.kofa.students.studylevel import StudentStudyLevel, CourseTicket |
---|
| 80 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
[8779] | 81 | from waeup.kofa.students.workflow import (CREATED, ADMITTED, PAID, |
---|
[9028] | 82 | CLEARANCE, REQUESTED, RETURNING, CLEARED, REGISTERED, VALIDATED, |
---|
[10458] | 83 | GRADUATED, TRANSCRIPT, FORBIDDEN_POSTGRAD_TRANS) |
---|
[6621] | 84 | |
---|
[9797] | 85 | |
---|
[8779] | 86 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
| 87 | |
---|
[8737] | 88 | # Save function used for save methods in pages |
---|
| 89 | def msave(view, **data): |
---|
| 90 | changed_fields = view.applyData(view.context, **data) |
---|
| 91 | # Turn list of lists into single list |
---|
| 92 | if changed_fields: |
---|
| 93 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
| 94 | # Inform catalog if certificate has changed |
---|
| 95 | # (applyData does this only for the context) |
---|
| 96 | if 'certificate' in changed_fields: |
---|
| 97 | notify(grok.ObjectModifiedEvent(view.context.student)) |
---|
| 98 | fields_string = ' + '.join(changed_fields) |
---|
| 99 | view.flash(_('Form has been saved.')) |
---|
| 100 | if fields_string: |
---|
| 101 | view.context.writeLogMessage(view, 'saved: %s' % fields_string) |
---|
| 102 | return |
---|
| 103 | |
---|
[7145] | 104 | def emit_lock_message(view): |
---|
[7642] | 105 | """Flash a lock message. |
---|
| 106 | """ |
---|
[11254] | 107 | view.flash(_('The requested form is locked (read-only).'), type="warning") |
---|
[7133] | 108 | view.redirect(view.url(view.context)) |
---|
| 109 | return |
---|
| 110 | |
---|
[8921] | 111 | def translated_values(view): |
---|
[9685] | 112 | """Translate course ticket attribute values to be displayed on |
---|
| 113 | studylevel pages. |
---|
| 114 | """ |
---|
[8921] | 115 | lang = view.request.cookies.get('kofa.language') |
---|
| 116 | for value in view.context.values(): |
---|
[9328] | 117 | # We have to unghostify (according to Tres Seaver) the __dict__ |
---|
| 118 | # by activating the object, otherwise value_dict will be empty |
---|
| 119 | # when calling the first time. |
---|
[9330] | 120 | value._p_activate() |
---|
[8921] | 121 | value_dict = dict([i for i in value.__dict__.items()]) |
---|
[11254] | 122 | value_dict['url'] = view.url(value) |
---|
[9698] | 123 | value_dict['removable_by_student'] = value.removable_by_student |
---|
[8921] | 124 | value_dict['mandatory'] = translate(str(value.mandatory), 'zope', |
---|
| 125 | target_language=lang) |
---|
| 126 | value_dict['carry_over'] = translate(str(value.carry_over), 'zope', |
---|
| 127 | target_language=lang) |
---|
| 128 | value_dict['automatic'] = translate(str(value.automatic), 'zope', |
---|
| 129 | target_language=lang) |
---|
[9685] | 130 | value_dict['grade'] = value.grade |
---|
| 131 | value_dict['weight'] = value.weight |
---|
[10436] | 132 | semester_dict = getUtility(IKofaUtils).SEMESTER_DICT |
---|
[10440] | 133 | value_dict['semester'] = semester_dict[ |
---|
| 134 | value.semester].replace('mester', 'm.') |
---|
[8921] | 135 | yield value_dict |
---|
| 136 | |
---|
[9814] | 137 | def clearance_disabled_message(student): |
---|
| 138 | try: |
---|
| 139 | session_config = grok.getSite()[ |
---|
| 140 | 'configuration'][str(student.current_session)] |
---|
| 141 | except KeyError: |
---|
| 142 | return _('Session configuration object is not available.') |
---|
| 143 | if not session_config.clearance_enabled: |
---|
| 144 | return _('Clearance is disabled for this session.') |
---|
| 145 | return None |
---|
| 146 | |
---|
[9895] | 147 | def addCourseTicket(view, course=None): |
---|
| 148 | students_utils = getUtility(IStudentsUtils) |
---|
| 149 | ticket = createObject(u'waeup.CourseTicket') |
---|
| 150 | ticket.automatic = False |
---|
| 151 | ticket.carry_over = False |
---|
| 152 | max_credits = students_utils.maxCreditsExceeded(view.context, course) |
---|
| 153 | if max_credits: |
---|
| 154 | view.flash(_( |
---|
| 155 | 'Total credits exceed ${a}.', |
---|
[11254] | 156 | mapping = {'a': max_credits}), type="warning") |
---|
[9895] | 157 | return False |
---|
| 158 | try: |
---|
| 159 | view.context.addCourseTicket(ticket, course) |
---|
| 160 | except KeyError: |
---|
[11254] | 161 | view.flash(_('The ticket exists.'), type="warning") |
---|
[9895] | 162 | return False |
---|
| 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 = [] |
---|
[9795] | 266 | if form.get('searchtype', None) == 'suspended': |
---|
| 267 | self.searchtype = form['searchtype'] |
---|
| 268 | self.searchterm = None |
---|
[10466] | 269 | elif form.get('searchtype', None) == 'transcript': |
---|
[10465] | 270 | self.searchtype = form['searchtype'] |
---|
| 271 | self.searchterm = None |
---|
[9795] | 272 | elif 'searchterm' in form and form['searchterm']: |
---|
[6626] | 273 | self.searchterm = form['searchterm'] |
---|
| 274 | self.searchtype = form['searchtype'] |
---|
| 275 | elif 'old_searchterm' in form: |
---|
| 276 | self.searchterm = form['old_searchterm'] |
---|
| 277 | self.searchtype = form['old_searchtype'] |
---|
| 278 | else: |
---|
| 279 | if 'search' in form: |
---|
[11254] | 280 | self.flash(_('Empty search string'), type="warning") |
---|
[6626] | 281 | return |
---|
[7068] | 282 | if self.searchtype == 'current_session': |
---|
[8081] | 283 | try: |
---|
| 284 | self.searchterm = int(self.searchterm) |
---|
| 285 | except ValueError: |
---|
[11254] | 286 | self.flash(_('Only year dates allowed (e.g. 2011).'), |
---|
| 287 | type="danger") |
---|
[8081] | 288 | return |
---|
[6626] | 289 | self.hitlist = search(query=self.searchterm, |
---|
| 290 | searchtype=self.searchtype, view=self) |
---|
| 291 | if not self.hitlist: |
---|
[11254] | 292 | self.flash(_('No student found.'), type="warning") |
---|
[6626] | 293 | return |
---|
| 294 | |
---|
[7819] | 295 | class StudentsContainerManagePage(KofaPage): |
---|
[6626] | 296 | """The manage page for student containers. |
---|
[6622] | 297 | """ |
---|
| 298 | grok.context(IStudentsContainer) |
---|
| 299 | grok.name('manage') |
---|
[7136] | 300 | grok.require('waeup.manageStudent') |
---|
[6695] | 301 | grok.template('containermanagepage') |
---|
[6642] | 302 | pnav = 4 |
---|
[7723] | 303 | label = _('Manage student section') |
---|
[10647] | 304 | search_button = _('Find student(s)') |
---|
[7735] | 305 | remove_button = _('Remove selected') |
---|
[6622] | 306 | |
---|
[6626] | 307 | def update(self, *args, **kw): |
---|
| 308 | form = self.request.form |
---|
| 309 | self.hitlist = [] |
---|
[9795] | 310 | if form.get('searchtype', None) == 'suspended': |
---|
| 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 | |
---|
[7723] | 364 | @action(_('Create student record'), 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 | |
---|
[9338] | 373 | class LoginAsStudentStep1(KofaEditFormPage): |
---|
| 374 | """ View to temporarily set a student password. |
---|
| 375 | """ |
---|
| 376 | grok.context(IStudent) |
---|
| 377 | grok.name('loginasstep1') |
---|
| 378 | grok.require('waeup.loginAsStudent') |
---|
| 379 | grok.template('loginasstep1') |
---|
| 380 | pnav = 4 |
---|
| 381 | |
---|
| 382 | def label(self): |
---|
| 383 | return _(u'Set temporary password for ${a}', |
---|
| 384 | mapping = {'a':self.context.display_fullname}) |
---|
| 385 | |
---|
| 386 | @action('Set password now', style='primary') |
---|
| 387 | def setPassword(self, *args, **data): |
---|
| 388 | kofa_utils = getUtility(IKofaUtils) |
---|
| 389 | password = kofa_utils.genPassword() |
---|
| 390 | self.context.setTempPassword(self.request.principal.id, password) |
---|
| 391 | self.context.writeLogMessage( |
---|
| 392 | self, 'temp_password generated: %s' % password) |
---|
| 393 | args = {'password':password} |
---|
| 394 | self.redirect(self.url(self.context) + |
---|
| 395 | '/loginasstep2?%s' % urlencode(args)) |
---|
| 396 | return |
---|
| 397 | |
---|
| 398 | class LoginAsStudentStep2(KofaPage): |
---|
| 399 | """ View to temporarily login as student with a temporary password. |
---|
| 400 | """ |
---|
| 401 | grok.context(IStudent) |
---|
| 402 | grok.name('loginasstep2') |
---|
| 403 | grok.require('waeup.Public') |
---|
| 404 | grok.template('loginasstep2') |
---|
| 405 | login_button = _('Login now') |
---|
| 406 | pnav = 4 |
---|
| 407 | |
---|
| 408 | def label(self): |
---|
| 409 | return _(u'Login as ${a}', |
---|
| 410 | mapping = {'a':self.context.student_id}) |
---|
| 411 | |
---|
| 412 | def update(self, SUBMIT=None, password=None): |
---|
| 413 | self.password = password |
---|
| 414 | if SUBMIT is not None: |
---|
| 415 | self.flash(_('You successfully logged in as student.')) |
---|
| 416 | self.redirect(self.url(self.context)) |
---|
| 417 | return |
---|
| 418 | |
---|
[7819] | 419 | class StudentBaseDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 420 | """ Page to display student base data |
---|
| 421 | """ |
---|
[6622] | 422 | grok.context(IStudent) |
---|
| 423 | grok.name('index') |
---|
[6660] | 424 | grok.require('waeup.viewStudent') |
---|
[6695] | 425 | grok.template('basepage') |
---|
[9702] | 426 | form_fields = grok.AutoFields(IStudentBase).omit( |
---|
| 427 | 'password', 'suspended', 'suspended_comment') |
---|
[6642] | 428 | pnav = 4 |
---|
[6622] | 429 | |
---|
| 430 | @property |
---|
| 431 | def label(self): |
---|
[8983] | 432 | if self.context.suspended: |
---|
[9124] | 433 | return _('${a}: Base Data (account deactivated)', |
---|
[8983] | 434 | mapping = {'a':self.context.display_fullname}) |
---|
| 435 | return _('${a}: Base Data', |
---|
[7723] | 436 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 437 | |
---|
[6699] | 438 | @property |
---|
| 439 | def hasPassword(self): |
---|
| 440 | if self.context.password: |
---|
[7723] | 441 | return _('set') |
---|
| 442 | return _('unset') |
---|
[6699] | 443 | |
---|
[9141] | 444 | class StudentBasePDFFormPage(KofaDisplayFormPage): |
---|
| 445 | """ Page to display student base data in pdf files. |
---|
| 446 | """ |
---|
| 447 | |
---|
[10250] | 448 | def __init__(self, context, request, omit_fields=()): |
---|
[9374] | 449 | self.omit_fields = omit_fields |
---|
| 450 | super(StudentBasePDFFormPage, self).__init__(context, request) |
---|
| 451 | |
---|
| 452 | @property |
---|
| 453 | def form_fields(self): |
---|
| 454 | form_fields = grok.AutoFields(IStudentBase) |
---|
| 455 | for field in self.omit_fields: |
---|
| 456 | form_fields = form_fields.omit(field) |
---|
| 457 | return form_fields |
---|
| 458 | |
---|
[7229] | 459 | class ContactStudentForm(ContactAdminForm): |
---|
| 460 | grok.context(IStudent) |
---|
[7230] | 461 | grok.name('contactstudent') |
---|
[7275] | 462 | grok.require('waeup.viewStudent') |
---|
[7229] | 463 | pnav = 4 |
---|
| 464 | form_fields = grok.AutoFields(IContactForm).select('subject', 'body') |
---|
| 465 | |
---|
[9484] | 466 | def update(self, subject=u'', body=u''): |
---|
[9857] | 467 | super(ContactStudentForm, self).update() |
---|
[7275] | 468 | self.form_fields.get('subject').field.default = subject |
---|
[9484] | 469 | self.form_fields.get('body').field.default = body |
---|
[9857] | 470 | return |
---|
[7275] | 471 | |
---|
[7229] | 472 | def label(self): |
---|
[7723] | 473 | return _(u'Send message to ${a}', |
---|
| 474 | mapping = {'a':self.context.display_fullname}) |
---|
[7229] | 475 | |
---|
[7459] | 476 | @action('Send message now', style='primary') |
---|
[7229] | 477 | def send(self, *args, **data): |
---|
[7234] | 478 | try: |
---|
[7403] | 479 | email = self.request.principal.email |
---|
[7234] | 480 | except AttributeError: |
---|
[7403] | 481 | email = self.config.email_admin |
---|
| 482 | usertype = getattr(self.request.principal, |
---|
| 483 | 'user_type', 'system').title() |
---|
[7819] | 484 | kofa_utils = getUtility(IKofaUtils) |
---|
[7811] | 485 | success = kofa_utils.sendContactForm( |
---|
[7403] | 486 | self.request.principal.title,email, |
---|
| 487 | self.context.display_fullname,self.context.email, |
---|
| 488 | self.request.principal.id,usertype, |
---|
| 489 | self.config.name, |
---|
| 490 | data['body'],data['subject']) |
---|
[7229] | 491 | if success: |
---|
[7723] | 492 | self.flash(_('Your message has been sent.')) |
---|
[7229] | 493 | else: |
---|
[11254] | 494 | self.flash(_('An smtp server error occurred.'), type="danger") |
---|
[7229] | 495 | return |
---|
| 496 | |
---|
[9191] | 497 | class ExportPDFAdmissionSlipPage(UtilityView, grok.View): |
---|
| 498 | """Deliver a PDF Admission slip. |
---|
| 499 | """ |
---|
| 500 | grok.context(IStudent) |
---|
| 501 | grok.name('admission_slip.pdf') |
---|
| 502 | grok.require('waeup.viewStudent') |
---|
| 503 | prefix = 'form' |
---|
| 504 | |
---|
[10270] | 505 | omit_fields = ('date_of_birth',) |
---|
| 506 | |
---|
[9191] | 507 | form_fields = grok.AutoFields(IStudentBase).select('student_id', 'reg_number') |
---|
| 508 | |
---|
| 509 | @property |
---|
| 510 | def label(self): |
---|
| 511 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 512 | return translate(_('Admission Letter of'), |
---|
| 513 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 514 | + ' %s' % self.context.display_fullname |
---|
| 515 | |
---|
| 516 | def render(self): |
---|
| 517 | students_utils = getUtility(IStudentsUtils) |
---|
| 518 | return students_utils.renderPDFAdmissionLetter(self, |
---|
[10270] | 519 | self.context.student, omit_fields=self.omit_fields) |
---|
[9191] | 520 | |
---|
[7819] | 521 | class StudentBaseManageFormPage(KofaEditFormPage): |
---|
[7133] | 522 | """ View to manage student base data |
---|
[6631] | 523 | """ |
---|
| 524 | grok.context(IStudent) |
---|
[7133] | 525 | grok.name('manage_base') |
---|
[7136] | 526 | grok.require('waeup.manageStudent') |
---|
[9124] | 527 | form_fields = grok.AutoFields(IStudentBase).omit( |
---|
| 528 | 'student_id', 'adm_code', 'suspended') |
---|
[6695] | 529 | grok.template('basemanagepage') |
---|
[7723] | 530 | label = _('Manage base data') |
---|
[6642] | 531 | pnav = 4 |
---|
[6631] | 532 | |
---|
[6638] | 533 | def update(self): |
---|
| 534 | super(StudentBaseManageFormPage, self).update() |
---|
| 535 | self.wf_info = IWorkflowInfo(self.context) |
---|
| 536 | return |
---|
| 537 | |
---|
[7723] | 538 | @action(_('Save'), style='primary') |
---|
[6638] | 539 | def save(self, **data): |
---|
[6701] | 540 | form = self.request.form |
---|
[6790] | 541 | password = form.get('password', None) |
---|
| 542 | password_ctl = form.get('control_password', None) |
---|
| 543 | if password: |
---|
[7147] | 544 | validator = getUtility(IPasswordValidator) |
---|
| 545 | errors = validator.validate_password(password, password_ctl) |
---|
| 546 | if errors: |
---|
[11254] | 547 | self.flash( ' '.join(errors), type="danger") |
---|
[7147] | 548 | return |
---|
| 549 | changed_fields = self.applyData(self.context, **data) |
---|
[6771] | 550 | # Turn list of lists into single list |
---|
| 551 | if changed_fields: |
---|
| 552 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7147] | 553 | else: |
---|
| 554 | changed_fields = [] |
---|
| 555 | if password: |
---|
[9273] | 556 | # Now we know that the form has no errors and can set password |
---|
[7147] | 557 | IUserAccount(self.context).setPassword(password) |
---|
| 558 | changed_fields.append('password') |
---|
| 559 | fields_string = ' + '.join(changed_fields) |
---|
[7723] | 560 | self.flash(_('Form has been saved.')) |
---|
[6644] | 561 | if fields_string: |
---|
[8735] | 562 | self.context.writeLogMessage(self, 'saved: % s' % fields_string) |
---|
[6638] | 563 | return |
---|
| 564 | |
---|
[9273] | 565 | class StudentTriggerTransitionFormPage(KofaEditFormPage): |
---|
| 566 | """ View to manage student base data |
---|
| 567 | """ |
---|
| 568 | grok.context(IStudent) |
---|
| 569 | grok.name('trigtrans') |
---|
| 570 | grok.require('waeup.triggerTransition') |
---|
| 571 | grok.template('trigtrans') |
---|
| 572 | label = _('Trigger registration transition') |
---|
| 573 | pnav = 4 |
---|
| 574 | |
---|
| 575 | def getTransitions(self): |
---|
| 576 | """Return a list of dicts of allowed transition ids and titles. |
---|
| 577 | |
---|
| 578 | Each list entry provides keys ``name`` and ``title`` for |
---|
| 579 | internal name and (human readable) title of a single |
---|
| 580 | transition. |
---|
| 581 | """ |
---|
| 582 | wf_info = IWorkflowInfo(self.context) |
---|
| 583 | allowed_transitions = [t for t in wf_info.getManualTransitions() |
---|
| 584 | if not t[0].startswith('pay')] |
---|
[10155] | 585 | if self.context.is_postgrad and not self.context.is_special_postgrad: |
---|
[9273] | 586 | allowed_transitions = [t for t in allowed_transitions |
---|
| 587 | if not t[0] in FORBIDDEN_POSTGRAD_TRANS] |
---|
| 588 | return [dict(name='', title=_('No transition'))] +[ |
---|
| 589 | dict(name=x, title=y) for x, y in allowed_transitions] |
---|
| 590 | |
---|
| 591 | @action(_('Save'), style='primary') |
---|
| 592 | def save(self, **data): |
---|
| 593 | form = self.request.form |
---|
[9701] | 594 | if 'transition' in form and form['transition']: |
---|
[9273] | 595 | transition_id = form['transition'] |
---|
| 596 | wf_info = IWorkflowInfo(self.context) |
---|
| 597 | wf_info.fireTransition(transition_id) |
---|
| 598 | return |
---|
| 599 | |
---|
[9124] | 600 | class StudentActivatePage(UtilityView, grok.View): |
---|
| 601 | """ Activate student account |
---|
| 602 | """ |
---|
| 603 | grok.context(IStudent) |
---|
| 604 | grok.name('activate') |
---|
| 605 | grok.require('waeup.manageStudent') |
---|
| 606 | |
---|
| 607 | def update(self): |
---|
| 608 | self.context.suspended = False |
---|
| 609 | self.context.writeLogMessage(self, 'account activated') |
---|
| 610 | history = IObjectHistory(self.context) |
---|
| 611 | history.addMessage('Student account activated') |
---|
| 612 | self.flash(_('Student account has been activated.')) |
---|
| 613 | self.redirect(self.url(self.context)) |
---|
| 614 | return |
---|
| 615 | |
---|
| 616 | def render(self): |
---|
| 617 | return |
---|
| 618 | |
---|
| 619 | class StudentDeactivatePage(UtilityView, grok.View): |
---|
| 620 | """ Deactivate student account |
---|
| 621 | """ |
---|
| 622 | grok.context(IStudent) |
---|
| 623 | grok.name('deactivate') |
---|
| 624 | grok.require('waeup.manageStudent') |
---|
| 625 | |
---|
| 626 | def update(self): |
---|
| 627 | self.context.suspended = True |
---|
| 628 | self.context.writeLogMessage(self, 'account deactivated') |
---|
| 629 | history = IObjectHistory(self.context) |
---|
| 630 | history.addMessage('Student account deactivated') |
---|
| 631 | self.flash(_('Student account has been deactivated.')) |
---|
| 632 | self.redirect(self.url(self.context)) |
---|
| 633 | return |
---|
| 634 | |
---|
| 635 | def render(self): |
---|
| 636 | return |
---|
| 637 | |
---|
[7819] | 638 | class StudentClearanceDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 639 | """ Page to display student clearance data |
---|
| 640 | """ |
---|
| 641 | grok.context(IStudent) |
---|
| 642 | grok.name('view_clearance') |
---|
[6660] | 643 | grok.require('waeup.viewStudent') |
---|
[6642] | 644 | pnav = 4 |
---|
[6631] | 645 | |
---|
| 646 | @property |
---|
[8099] | 647 | def separators(self): |
---|
| 648 | return getUtility(IStudentsUtils).SEPARATORS_DICT |
---|
| 649 | |
---|
| 650 | @property |
---|
[7993] | 651 | def form_fields(self): |
---|
[8472] | 652 | if self.context.is_postgrad: |
---|
[8977] | 653 | form_fields = grok.AutoFields( |
---|
| 654 | IPGStudentClearance).omit('clearance_locked') |
---|
[7993] | 655 | else: |
---|
[8977] | 656 | form_fields = grok.AutoFields( |
---|
| 657 | IUGStudentClearance).omit('clearance_locked') |
---|
[9486] | 658 | if not getattr(self.context, 'officer_comment'): |
---|
| 659 | form_fields = form_fields.omit('officer_comment') |
---|
[9484] | 660 | else: |
---|
[9486] | 661 | form_fields['officer_comment'].custom_widget = BytesDisplayWidget |
---|
[7993] | 662 | return form_fields |
---|
| 663 | |
---|
| 664 | @property |
---|
[6631] | 665 | def label(self): |
---|
[7723] | 666 | return _('${a}: Clearance Data', |
---|
| 667 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 668 | |
---|
[7277] | 669 | class ExportPDFClearanceSlipPage(grok.View): |
---|
| 670 | """Deliver a PDF slip of the context. |
---|
| 671 | """ |
---|
| 672 | grok.context(IStudent) |
---|
[9452] | 673 | grok.name('clearance_slip.pdf') |
---|
[7277] | 674 | grok.require('waeup.viewStudent') |
---|
| 675 | prefix = 'form' |
---|
[9702] | 676 | omit_fields = ( |
---|
[10694] | 677 | 'suspended', 'phone', |
---|
[10256] | 678 | 'adm_code', 'suspended_comment', |
---|
| 679 | 'date_of_birth') |
---|
[7277] | 680 | |
---|
| 681 | @property |
---|
[7993] | 682 | def form_fields(self): |
---|
[8472] | 683 | if self.context.is_postgrad: |
---|
[8977] | 684 | form_fields = grok.AutoFields( |
---|
| 685 | IPGStudentClearance).omit('clearance_locked') |
---|
[7993] | 686 | else: |
---|
[8977] | 687 | form_fields = grok.AutoFields( |
---|
| 688 | IUGStudentClearance).omit('clearance_locked') |
---|
[9486] | 689 | if not getattr(self.context, 'officer_comment'): |
---|
| 690 | form_fields = form_fields.omit('officer_comment') |
---|
[7993] | 691 | return form_fields |
---|
| 692 | |
---|
| 693 | @property |
---|
[7723] | 694 | def title(self): |
---|
[7819] | 695 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 696 | return translate(_('Clearance Data'), 'waeup.kofa', |
---|
[7723] | 697 | target_language=portal_language) |
---|
| 698 | |
---|
| 699 | @property |
---|
[7277] | 700 | def label(self): |
---|
[7819] | 701 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[9026] | 702 | return translate(_('Clearance Slip of'), |
---|
[7811] | 703 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7723] | 704 | + ' %s' % self.context.display_fullname |
---|
[7277] | 705 | |
---|
[9969] | 706 | # XXX: not used in waeup.kofa and thus not tested |
---|
[9010] | 707 | def _signatures(self): |
---|
[9548] | 708 | isStudent = getattr( |
---|
| 709 | self.request.principal, 'user_type', None) == 'student' |
---|
| 710 | if not isStudent and self.context.state in (CLEARED, ): |
---|
[9969] | 711 | return ([_('Student Signature')], |
---|
| 712 | [_('Clearance Officer Signature')]) |
---|
[9010] | 713 | return |
---|
| 714 | |
---|
[9555] | 715 | def _sigsInFooter(self): |
---|
[9548] | 716 | isStudent = getattr( |
---|
| 717 | self.request.principal, 'user_type', None) == 'student' |
---|
| 718 | if not isStudent and self.context.state in (CLEARED, ): |
---|
[9555] | 719 | return (_('Date, Student Signature'), |
---|
| 720 | _('Date, Clearance Officer Signature'), |
---|
| 721 | ) |
---|
[9557] | 722 | return () |
---|
[9548] | 723 | |
---|
[7277] | 724 | def render(self): |
---|
[9141] | 725 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 726 | self.request, self.omit_fields) |
---|
[7277] | 727 | students_utils = getUtility(IStudentsUtils) |
---|
| 728 | return students_utils.renderPDF( |
---|
[9452] | 729 | self, 'clearance_slip.pdf', |
---|
[9548] | 730 | self.context.student, studentview, signatures=self._signatures(), |
---|
[10250] | 731 | sigs_in_footer=self._sigsInFooter(), |
---|
| 732 | omit_fields=self.omit_fields) |
---|
[7277] | 733 | |
---|
[7819] | 734 | class StudentClearanceManageFormPage(KofaEditFormPage): |
---|
[8120] | 735 | """ Page to manage student clearance data |
---|
[6631] | 736 | """ |
---|
| 737 | grok.context(IStudent) |
---|
[8119] | 738 | grok.name('manage_clearance') |
---|
[7136] | 739 | grok.require('waeup.manageStudent') |
---|
[7134] | 740 | grok.template('clearanceeditpage') |
---|
[7723] | 741 | label = _('Manage clearance data') |
---|
[6642] | 742 | pnav = 4 |
---|
[6650] | 743 | |
---|
[7993] | 744 | @property |
---|
[8099] | 745 | def separators(self): |
---|
| 746 | return getUtility(IStudentsUtils).SEPARATORS_DICT |
---|
| 747 | |
---|
| 748 | @property |
---|
[7993] | 749 | def form_fields(self): |
---|
[8472] | 750 | if self.context.is_postgrad: |
---|
[8977] | 751 | form_fields = grok.AutoFields(IPGStudentClearance).omit('clr_code') |
---|
[7993] | 752 | else: |
---|
[8977] | 753 | form_fields = grok.AutoFields(IUGStudentClearance).omit('clr_code') |
---|
[7993] | 754 | return form_fields |
---|
| 755 | |
---|
[7723] | 756 | @action(_('Save'), style='primary') |
---|
[6695] | 757 | def save(self, **data): |
---|
[6762] | 758 | msave(self, **data) |
---|
[6695] | 759 | return |
---|
| 760 | |
---|
[7459] | 761 | class StudentClearPage(UtilityView, grok.View): |
---|
[7158] | 762 | """ Clear student by clearance officer |
---|
| 763 | """ |
---|
| 764 | grok.context(IStudent) |
---|
| 765 | grok.name('clear') |
---|
| 766 | grok.require('waeup.clearStudent') |
---|
| 767 | |
---|
| 768 | def update(self): |
---|
[9814] | 769 | if clearance_disabled_message(self.context): |
---|
| 770 | self.flash(clearance_disabled_message(self.context)) |
---|
| 771 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 772 | return |
---|
[7158] | 773 | if self.context.state == REQUESTED: |
---|
| 774 | IWorkflowInfo(self.context).fireTransition('clear') |
---|
[7723] | 775 | self.flash(_('Student has been cleared.')) |
---|
[7158] | 776 | else: |
---|
[11254] | 777 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
[7158] | 778 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 779 | return |
---|
| 780 | |
---|
| 781 | def render(self): |
---|
| 782 | return |
---|
| 783 | |
---|
[9484] | 784 | class StudentRejectClearancePage(KofaEditFormPage): |
---|
[7158] | 785 | """ Reject clearance by clearance officers |
---|
| 786 | """ |
---|
| 787 | grok.context(IStudent) |
---|
| 788 | grok.name('reject_clearance') |
---|
[9484] | 789 | label = _('Reject clearance') |
---|
[7158] | 790 | grok.require('waeup.clearStudent') |
---|
[9484] | 791 | form_fields = grok.AutoFields( |
---|
[9486] | 792 | IUGStudentClearance).select('officer_comment') |
---|
[7158] | 793 | |
---|
[9814] | 794 | def update(self): |
---|
| 795 | if clearance_disabled_message(self.context): |
---|
[11254] | 796 | self.flash(clearance_disabled_message(self.context), type="warning") |
---|
[9814] | 797 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 798 | return |
---|
| 799 | return super(StudentRejectClearancePage, self).update() |
---|
| 800 | |
---|
[9484] | 801 | @action(_('Save comment and reject clearance now'), style='primary') |
---|
| 802 | def reject(self, **data): |
---|
[7158] | 803 | if self.context.state == CLEARED: |
---|
| 804 | IWorkflowInfo(self.context).fireTransition('reset4') |
---|
[7723] | 805 | message = _('Clearance has been annulled.') |
---|
[11254] | 806 | self.flash(message, type="warning") |
---|
[7158] | 807 | elif self.context.state == REQUESTED: |
---|
| 808 | IWorkflowInfo(self.context).fireTransition('reset3') |
---|
[7723] | 809 | message = _('Clearance request has been rejected.') |
---|
[11254] | 810 | self.flash(message, type="warning") |
---|
[7158] | 811 | else: |
---|
[11254] | 812 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
[7334] | 813 | self.redirect(self.url(self.context,'view_clearance')) |
---|
[7275] | 814 | return |
---|
[9484] | 815 | self.applyData(self.context, **data) |
---|
[9486] | 816 | comment = data['officer_comment'] |
---|
[9556] | 817 | if comment: |
---|
| 818 | self.context.writeLogMessage( |
---|
| 819 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 820 | args = {'subject':message, 'body':comment} |
---|
| 821 | else: |
---|
| 822 | args = {'subject':message,} |
---|
[7275] | 823 | self.redirect(self.url(self.context) + |
---|
| 824 | '/contactstudent?%s' % urlencode(args)) |
---|
[7158] | 825 | return |
---|
| 826 | |
---|
| 827 | |
---|
[7819] | 828 | class StudentPersonalDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 829 | """ Page to display student personal data |
---|
| 830 | """ |
---|
| 831 | grok.context(IStudent) |
---|
| 832 | grok.name('view_personal') |
---|
[6660] | 833 | grok.require('waeup.viewStudent') |
---|
[6631] | 834 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
[7386] | 835 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
[9543] | 836 | form_fields[ |
---|
| 837 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6642] | 838 | pnav = 4 |
---|
[6631] | 839 | |
---|
| 840 | @property |
---|
| 841 | def label(self): |
---|
[7723] | 842 | return _('${a}: Personal Data', |
---|
| 843 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 844 | |
---|
[8903] | 845 | class StudentPersonalManageFormPage(KofaEditFormPage): |
---|
| 846 | """ Page to manage personal data |
---|
[6631] | 847 | """ |
---|
| 848 | grok.context(IStudent) |
---|
[8903] | 849 | grok.name('manage_personal') |
---|
| 850 | grok.require('waeup.manageStudent') |
---|
[9553] | 851 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
| 852 | form_fields['personal_updated'].for_display = True |
---|
[9571] | 853 | form_fields[ |
---|
| 854 | 'personal_updated'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[8903] | 855 | label = _('Manage personal data') |
---|
[6642] | 856 | pnav = 4 |
---|
[6631] | 857 | |
---|
[7723] | 858 | @action(_('Save'), style='primary') |
---|
[6762] | 859 | def save(self, **data): |
---|
| 860 | msave(self, **data) |
---|
| 861 | return |
---|
| 862 | |
---|
[9543] | 863 | class StudentPersonalEditFormPage(KofaEditFormPage): |
---|
[8903] | 864 | """ Page to edit personal data |
---|
| 865 | """ |
---|
[9543] | 866 | grok.context(IStudent) |
---|
[8903] | 867 | grok.name('edit_personal') |
---|
| 868 | grok.require('waeup.handleStudent') |
---|
[9563] | 869 | form_fields = grok.AutoFields(IStudentPersonalEdit).omit('personal_updated') |
---|
[8903] | 870 | label = _('Edit personal data') |
---|
| 871 | pnav = 4 |
---|
| 872 | |
---|
[9543] | 873 | @action(_('Save/Confirm'), style='primary') |
---|
| 874 | def save(self, **data): |
---|
| 875 | msave(self, **data) |
---|
[9569] | 876 | self.context.personal_updated = datetime.utcnow() |
---|
[9543] | 877 | return |
---|
| 878 | |
---|
[7819] | 879 | class StudyCourseDisplayFormPage(KofaDisplayFormPage): |
---|
[6635] | 880 | """ Page to display the student study course data |
---|
| 881 | """ |
---|
| 882 | grok.context(IStudentStudyCourse) |
---|
| 883 | grok.name('index') |
---|
[6660] | 884 | grok.require('waeup.viewStudent') |
---|
[6775] | 885 | grok.template('studycoursepage') |
---|
[6642] | 886 | pnav = 4 |
---|
[6635] | 887 | |
---|
| 888 | @property |
---|
[8972] | 889 | def form_fields(self): |
---|
| 890 | if self.context.is_postgrad: |
---|
| 891 | form_fields = grok.AutoFields(IStudentStudyCourse).omit( |
---|
[9723] | 892 | 'previous_verdict') |
---|
[8972] | 893 | else: |
---|
| 894 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 895 | return form_fields |
---|
| 896 | |
---|
| 897 | @property |
---|
[6635] | 898 | def label(self): |
---|
[9140] | 899 | if self.context.is_current: |
---|
| 900 | return _('${a}: Study Course', |
---|
| 901 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
| 902 | else: |
---|
| 903 | return _('${a}: Previous Study Course', |
---|
| 904 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6635] | 905 | |
---|
[6912] | 906 | @property |
---|
| 907 | def current_mode(self): |
---|
[7641] | 908 | if self.context.certificate is not None: |
---|
[7841] | 909 | studymodes_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
[7681] | 910 | return studymodes_dict[self.context.certificate.study_mode] |
---|
[7171] | 911 | return |
---|
[7642] | 912 | |
---|
[7171] | 913 | @property |
---|
| 914 | def department(self): |
---|
[7205] | 915 | if self.context.certificate is not None: |
---|
[7171] | 916 | return self.context.certificate.__parent__.__parent__ |
---|
| 917 | return |
---|
[6912] | 918 | |
---|
[7171] | 919 | @property |
---|
| 920 | def faculty(self): |
---|
[7205] | 921 | if self.context.certificate is not None: |
---|
[7171] | 922 | return self.context.certificate.__parent__.__parent__.__parent__ |
---|
| 923 | return |
---|
| 924 | |
---|
[9140] | 925 | @property |
---|
| 926 | def prev_studycourses(self): |
---|
| 927 | if self.context.is_current: |
---|
| 928 | if self.context.__parent__.get('studycourse_2', None) is not None: |
---|
| 929 | return ( |
---|
| 930 | {'href':self.url(self.context.student) + '/studycourse_1', |
---|
| 931 | 'title':_('First Study Course, ')}, |
---|
| 932 | {'href':self.url(self.context.student) + '/studycourse_2', |
---|
| 933 | 'title':_('Second Study Course')} |
---|
| 934 | ) |
---|
| 935 | if self.context.__parent__.get('studycourse_1', None) is not None: |
---|
| 936 | return ( |
---|
| 937 | {'href':self.url(self.context.student) + '/studycourse_1', |
---|
| 938 | 'title':_('First Study Course')}, |
---|
| 939 | ) |
---|
| 940 | return |
---|
| 941 | |
---|
[7819] | 942 | class StudyCourseManageFormPage(KofaEditFormPage): |
---|
[6649] | 943 | """ Page to edit the student study course data |
---|
| 944 | """ |
---|
| 945 | grok.context(IStudentStudyCourse) |
---|
[6775] | 946 | grok.name('manage') |
---|
[7136] | 947 | grok.require('waeup.manageStudent') |
---|
[6775] | 948 | grok.template('studycoursemanagepage') |
---|
[7723] | 949 | label = _('Manage study course') |
---|
[6649] | 950 | pnav = 4 |
---|
[7723] | 951 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 952 | tabtwoactions = [_('Remove selected levels'),_('Cancel')] |
---|
| 953 | tabthreeactions = [_('Add study level')] |
---|
[6649] | 954 | |
---|
[8972] | 955 | @property |
---|
| 956 | def form_fields(self): |
---|
| 957 | if self.context.is_postgrad: |
---|
| 958 | form_fields = grok.AutoFields(IStudentStudyCourse).omit( |
---|
[9723] | 959 | 'previous_verdict') |
---|
[8972] | 960 | else: |
---|
| 961 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 962 | return form_fields |
---|
| 963 | |
---|
[6775] | 964 | def update(self): |
---|
[9139] | 965 | if not self.context.is_current: |
---|
| 966 | emit_lock_message(self) |
---|
| 967 | return |
---|
[6775] | 968 | super(StudyCourseManageFormPage, self).update() |
---|
[7490] | 969 | return |
---|
[6775] | 970 | |
---|
[7723] | 971 | @action(_('Save'), style='primary') |
---|
[6761] | 972 | def save(self, **data): |
---|
[8099] | 973 | try: |
---|
| 974 | msave(self, **data) |
---|
| 975 | except ConstraintNotSatisfied: |
---|
| 976 | # The selected level might not exist in certificate |
---|
[11254] | 977 | self.flash(_('Current level not available for certificate.'), |
---|
| 978 | type="warning") |
---|
[8099] | 979 | return |
---|
[8081] | 980 | notify(grok.ObjectModifiedEvent(self.context.__parent__)) |
---|
[6761] | 981 | return |
---|
| 982 | |
---|
[6775] | 983 | @property |
---|
[10266] | 984 | def level_dicts(self): |
---|
[6775] | 985 | studylevelsource = StudyLevelSource().factory |
---|
| 986 | for code in studylevelsource.getValues(self.context): |
---|
| 987 | title = studylevelsource.getTitle(self.context, code) |
---|
| 988 | yield(dict(code=code, title=title)) |
---|
| 989 | |
---|
[9437] | 990 | @property |
---|
[10266] | 991 | def session_dicts(self): |
---|
[9437] | 992 | yield(dict(code='', title='--')) |
---|
| 993 | for item in academic_sessions(): |
---|
| 994 | code = item[1] |
---|
| 995 | title = item[0] |
---|
| 996 | yield(dict(code=code, title=title)) |
---|
| 997 | |
---|
[11254] | 998 | @action(_('Add study level'), style='primary') |
---|
[6774] | 999 | def addStudyLevel(self, **data): |
---|
[6775] | 1000 | level_code = self.request.form.get('addlevel', None) |
---|
[9437] | 1001 | level_session = self.request.form.get('level_session', None) |
---|
| 1002 | if not level_session: |
---|
[11254] | 1003 | self.flash(_('You must select a session for the level.'), |
---|
| 1004 | type="warning") |
---|
| 1005 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[9437] | 1006 | return |
---|
[8323] | 1007 | studylevel = createObject(u'waeup.StudentStudyLevel') |
---|
[6775] | 1008 | studylevel.level = int(level_code) |
---|
[9437] | 1009 | studylevel.level_session = int(level_session) |
---|
[6775] | 1010 | try: |
---|
[6782] | 1011 | self.context.addStudentStudyLevel( |
---|
| 1012 | self.context.certificate,studylevel) |
---|
[7723] | 1013 | self.flash(_('Study level has been added.')) |
---|
[6775] | 1014 | except KeyError: |
---|
[11254] | 1015 | self.flash(_('This level exists.'), type="warning") |
---|
| 1016 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6774] | 1017 | return |
---|
| 1018 | |
---|
[7723] | 1019 | @jsaction(_('Remove selected levels')) |
---|
[6775] | 1020 | def delStudyLevels(self, **data): |
---|
| 1021 | form = self.request.form |
---|
[9701] | 1022 | if 'val_id' in form: |
---|
[6775] | 1023 | child_id = form['val_id'] |
---|
| 1024 | else: |
---|
[11254] | 1025 | self.flash(_('No study level selected.'), type="warning") |
---|
| 1026 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6775] | 1027 | return |
---|
| 1028 | if not isinstance(child_id, list): |
---|
| 1029 | child_id = [child_id] |
---|
| 1030 | deleted = [] |
---|
| 1031 | for id in child_id: |
---|
[7723] | 1032 | del self.context[id] |
---|
| 1033 | deleted.append(id) |
---|
[6775] | 1034 | if len(deleted): |
---|
[7723] | 1035 | self.flash(_('Successfully removed: ${a}', |
---|
| 1036 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 1037 | self.context.writeLogMessage( |
---|
| 1038 | self,'removed: %s' % ', '.join(deleted)) |
---|
[11254] | 1039 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6775] | 1040 | return |
---|
[6774] | 1041 | |
---|
[10459] | 1042 | class StudentTranscriptRequestPage(KofaPage): |
---|
[10458] | 1043 | """ Page to transcript by student |
---|
| 1044 | """ |
---|
| 1045 | grok.context(IStudent) |
---|
| 1046 | grok.name('request_transcript') |
---|
| 1047 | grok.require('waeup.handleStudent') |
---|
[10459] | 1048 | grok.template('transcriptrequest') |
---|
[10458] | 1049 | label = _('Request transcript') |
---|
| 1050 | ac_prefix = 'TSC' |
---|
| 1051 | notice = '' |
---|
| 1052 | pnav = 4 |
---|
[10472] | 1053 | buttonname = _('Submit') |
---|
[10458] | 1054 | with_ac = True |
---|
| 1055 | |
---|
| 1056 | def update(self, SUBMIT=None): |
---|
[10459] | 1057 | super(StudentTranscriptRequestPage, self).update() |
---|
[10458] | 1058 | if not self.context.state == GRADUATED: |
---|
[11254] | 1059 | self.flash(_("Wrong state"), type="danger") |
---|
[10458] | 1060 | self.redirect(self.url(self.context)) |
---|
| 1061 | return |
---|
| 1062 | if self.with_ac: |
---|
| 1063 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1064 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1065 | if self.context.transcript_comment is not None: |
---|
| 1066 | self.correspondence = self.context.transcript_comment.replace( |
---|
| 1067 | '\n', '<br>') |
---|
| 1068 | else: |
---|
| 1069 | self.correspondence = '' |
---|
| 1070 | if SUBMIT is None: |
---|
| 1071 | return |
---|
| 1072 | if self.with_ac: |
---|
| 1073 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1074 | code = get_access_code(pin) |
---|
| 1075 | if not code: |
---|
[11254] | 1076 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[10458] | 1077 | return |
---|
| 1078 | if code.state == USED: |
---|
[11254] | 1079 | self.flash(_('Activation code has already been used.'), |
---|
| 1080 | type="warning") |
---|
[10458] | 1081 | return |
---|
| 1082 | # Mark pin as used (this also fires a pin related transition) |
---|
| 1083 | # and fire transition start_clearance |
---|
| 1084 | comment = _(u"invalidated") |
---|
| 1085 | # Here we know that the ac is in state initialized so we do not |
---|
| 1086 | # expect an exception, but the owner might be different |
---|
| 1087 | if not invalidate_accesscode(pin, comment, self.context.student_id): |
---|
[11254] | 1088 | self.flash(_('You are not the owner of this access code.'), |
---|
| 1089 | type="warning") |
---|
[10458] | 1090 | return |
---|
| 1091 | self.context.clr_code = pin |
---|
| 1092 | IWorkflowInfo(self.context).fireTransition('request_transcript') |
---|
| 1093 | comment = self.request.form.get('comment', '').replace('\r', '') |
---|
| 1094 | address = self.request.form.get('address', '').replace('\r', '') |
---|
| 1095 | tz = getattr(queryUtility(IKofaUtils), 'tzinfo', pytz.utc) |
---|
| 1096 | today = now(tz).strftime('%d/%m/%Y %H:%M:%S %Z') |
---|
| 1097 | old_transcript_comment = self.context.transcript_comment |
---|
| 1098 | if old_transcript_comment == None: |
---|
| 1099 | old_transcript_comment = '' |
---|
| 1100 | self.context.transcript_comment = '''On %s %s wrote: |
---|
| 1101 | |
---|
| 1102 | %s |
---|
| 1103 | |
---|
| 1104 | Dispatch Address: |
---|
| 1105 | %s |
---|
| 1106 | |
---|
| 1107 | %s''' % (today, self.request.principal.id, comment, address, |
---|
| 1108 | old_transcript_comment) |
---|
| 1109 | self.context.writeLogMessage( |
---|
| 1110 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 1111 | self.flash(_('Transcript processing has been started.')) |
---|
| 1112 | self.redirect(self.url(self.context)) |
---|
| 1113 | return |
---|
| 1114 | |
---|
[10459] | 1115 | class StudentTranscriptRequestProcessFormPage(KofaEditFormPage): |
---|
| 1116 | """ Page to process transcript requests |
---|
[10458] | 1117 | """ |
---|
| 1118 | grok.context(IStudent) |
---|
[10459] | 1119 | grok.name('process_transcript_request') |
---|
[10464] | 1120 | grok.require('waeup.viewTranscript') |
---|
[10459] | 1121 | grok.template('transcriptprocess') |
---|
[10458] | 1122 | form_fields = grok.AutoFields(IStudentTranscript) |
---|
[10459] | 1123 | label = _('Process transcript request') |
---|
| 1124 | buttonname = _('Save comment and mark as processed') |
---|
[10458] | 1125 | pnav = 4 |
---|
| 1126 | |
---|
[10459] | 1127 | def update(self, SUBMIT=None): |
---|
| 1128 | super(StudentTranscriptRequestProcessFormPage, self).update() |
---|
[10458] | 1129 | if self.context.state != TRANSCRIPT: |
---|
[11254] | 1130 | self.flash(_('Student is in wrong state.'), type="warning") |
---|
[10458] | 1131 | self.redirect(self.url(self.context)) |
---|
[10459] | 1132 | return |
---|
| 1133 | if self.context.transcript_comment is not None: |
---|
| 1134 | self.correspondence = self.context.transcript_comment.replace( |
---|
| 1135 | '\n', '<br>') |
---|
| 1136 | else: |
---|
| 1137 | self.correspondence = '' |
---|
| 1138 | if SUBMIT is None: |
---|
| 1139 | return |
---|
| 1140 | IWorkflowInfo(self.context).fireTransition('process_transcript') |
---|
| 1141 | self.flash(_('Transcript request processed.')) |
---|
| 1142 | comment = self.request.form.get('comment', '').replace('\r', '') |
---|
| 1143 | tz = getattr(queryUtility(IKofaUtils), 'tzinfo', pytz.utc) |
---|
| 1144 | today = now(tz).strftime('%d/%m/%Y %H:%M:%S %Z') |
---|
| 1145 | old_transcript_comment = self.context.transcript_comment |
---|
| 1146 | if old_transcript_comment == None: |
---|
| 1147 | old_transcript_comment = '' |
---|
| 1148 | self.context.transcript_comment = '''On %s %s wrote: |
---|
[10458] | 1149 | |
---|
[10459] | 1150 | %s |
---|
[10458] | 1151 | |
---|
[10459] | 1152 | %s''' % (today, self.request.principal.id, comment, |
---|
| 1153 | old_transcript_comment) |
---|
| 1154 | self.context.writeLogMessage( |
---|
| 1155 | self, 'comment: %s' % comment.replace('\n', '<br>')) |
---|
| 1156 | subject = _('Transcript processed') |
---|
[10460] | 1157 | args = {'subject':subject, 'body':comment} |
---|
[10458] | 1158 | self.redirect(self.url(self.context) + |
---|
| 1159 | '/contactstudent?%s' % urlencode(args)) |
---|
| 1160 | return |
---|
| 1161 | |
---|
[10470] | 1162 | class StudentTranscriptRequestManageFormPage(KofaEditFormPage): |
---|
| 1163 | """ Page to edit personal data by student |
---|
| 1164 | """ |
---|
| 1165 | grok.context(IStudent) |
---|
| 1166 | grok.name('manage_transcript_request') |
---|
| 1167 | grok.require('waeup.manageStudent') |
---|
| 1168 | form_fields = grok.AutoFields(IStudentTranscript) |
---|
| 1169 | label = _('Manage transcript request') |
---|
| 1170 | pnav = 4 |
---|
| 1171 | |
---|
| 1172 | @action(_('Save'), style='primary') |
---|
| 1173 | def save(self, **data): |
---|
| 1174 | msave(self, **data) |
---|
| 1175 | return |
---|
| 1176 | |
---|
[10178] | 1177 | class StudyCourseTranscriptPage(KofaDisplayFormPage): |
---|
| 1178 | """ Page to display the student's transcript. |
---|
| 1179 | """ |
---|
[10250] | 1180 | grok.context(IStudentStudyCourseTranscript) |
---|
[10178] | 1181 | grok.name('transcript') |
---|
[10278] | 1182 | grok.require('waeup.viewTranscript') |
---|
[10178] | 1183 | grok.template('transcript') |
---|
| 1184 | pnav = 4 |
---|
| 1185 | |
---|
| 1186 | def update(self): |
---|
[10266] | 1187 | if not self.context.student.transcript_enabled: |
---|
[11254] | 1188 | self.flash(_('You are not allowed to view the transcript.'), |
---|
| 1189 | type="warning") |
---|
[10266] | 1190 | self.redirect(self.url(self.context)) |
---|
| 1191 | return |
---|
[10178] | 1192 | super(StudyCourseTranscriptPage, self).update() |
---|
| 1193 | self.semester_dict = getUtility(IKofaUtils).SEMESTER_DICT |
---|
[10266] | 1194 | self.level_dict = level_dict(self.context) |
---|
[10178] | 1195 | self.session_dict = dict( |
---|
| 1196 | [(item[1], item[0]) for item in academic_sessions()]) |
---|
| 1197 | self.studymode_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
| 1198 | return |
---|
| 1199 | |
---|
| 1200 | @property |
---|
| 1201 | def label(self): |
---|
| 1202 | # Here we know that the cookie has been set |
---|
| 1203 | lang = self.request.cookies.get('kofa.language') |
---|
| 1204 | return _('${a}: Transcript Data', mapping = { |
---|
| 1205 | 'a':self.context.student.display_fullname}) |
---|
| 1206 | |
---|
[10250] | 1207 | class ExportPDFTranscriptPage(UtilityView, grok.View): |
---|
| 1208 | """Deliver a PDF slip of the context. |
---|
| 1209 | """ |
---|
| 1210 | grok.context(IStudentStudyCourse) |
---|
| 1211 | grok.name('transcript.pdf') |
---|
[10278] | 1212 | grok.require('waeup.viewTranscript') |
---|
[10250] | 1213 | form_fields = grok.AutoFields(IStudentStudyCourseTranscript) |
---|
| 1214 | prefix = 'form' |
---|
| 1215 | omit_fields = ( |
---|
[10688] | 1216 | 'department', 'faculty', 'current_mode', 'entry_session', 'certificate', |
---|
[10250] | 1217 | 'password', 'suspended', 'phone', 'email', |
---|
[10531] | 1218 | 'adm_code', 'suspended_comment') |
---|
[10250] | 1219 | |
---|
| 1220 | def update(self): |
---|
[10266] | 1221 | if not self.context.student.transcript_enabled: |
---|
[11254] | 1222 | self.flash(_('You are not allowed to download the transcript.'), |
---|
| 1223 | type="warning") |
---|
[10266] | 1224 | self.redirect(self.url(self.context)) |
---|
| 1225 | return |
---|
[10250] | 1226 | super(ExportPDFTranscriptPage, self).update() |
---|
| 1227 | self.semester_dict = getUtility(IKofaUtils).SEMESTER_DICT |
---|
[10266] | 1228 | self.level_dict = level_dict(self.context) |
---|
[10250] | 1229 | self.session_dict = dict( |
---|
| 1230 | [(item[1], item[0]) for item in academic_sessions()]) |
---|
| 1231 | self.studymode_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
| 1232 | return |
---|
| 1233 | |
---|
| 1234 | @property |
---|
| 1235 | def label(self): |
---|
| 1236 | # Here we know that the cookie has been set |
---|
| 1237 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1238 | return translate(_('Academic Transcript'), |
---|
| 1239 | 'waeup.kofa', target_language=portal_language) |
---|
| 1240 | |
---|
[10262] | 1241 | def _sigsInFooter(self): |
---|
| 1242 | return (_('CERTIFIED TRUE COPY'),) |
---|
| 1243 | |
---|
[10531] | 1244 | def _signatures(self): |
---|
| 1245 | return None |
---|
| 1246 | |
---|
[10250] | 1247 | def render(self): |
---|
| 1248 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[10436] | 1249 | Term = translate(_('Term'), 'waeup.kofa', target_language=portal_language) |
---|
[10250] | 1250 | Code = translate(_('Code'), 'waeup.kofa', target_language=portal_language) |
---|
| 1251 | Title = translate(_('Title'), 'waeup.kofa', target_language=portal_language) |
---|
| 1252 | Cred = translate(_('Credits'), 'waeup.kofa', target_language=portal_language) |
---|
| 1253 | Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) |
---|
| 1254 | Grade = translate(_('Grade'), 'waeup.kofa', target_language=portal_language) |
---|
| 1255 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
| 1256 | self.request, self.omit_fields) |
---|
| 1257 | students_utils = getUtility(IStudentsUtils) |
---|
| 1258 | |
---|
| 1259 | tableheader = [(Code,'code', 2.5), |
---|
| 1260 | (Title,'title', 7), |
---|
[10436] | 1261 | (Term, 'semester', 1.5), |
---|
[10250] | 1262 | (Cred, 'credits', 1.5), |
---|
| 1263 | (Score, 'score', 1.5), |
---|
| 1264 | (Grade, 'grade', 1.5), |
---|
| 1265 | ] |
---|
| 1266 | |
---|
| 1267 | return students_utils.renderPDFTranscript( |
---|
| 1268 | self, 'transcript.pdf', |
---|
| 1269 | self.context.student, studentview, |
---|
| 1270 | omit_fields=self.omit_fields, |
---|
[10262] | 1271 | tableheader=tableheader, |
---|
[10531] | 1272 | signatures=self._signatures(), |
---|
[10262] | 1273 | sigs_in_footer=self._sigsInFooter(), |
---|
[10250] | 1274 | ) |
---|
| 1275 | |
---|
[9138] | 1276 | class StudentTransferFormPage(KofaAddFormPage): |
---|
| 1277 | """Page to transfer the student. |
---|
| 1278 | """ |
---|
| 1279 | grok.context(IStudent) |
---|
| 1280 | grok.name('transfer') |
---|
| 1281 | grok.require('waeup.manageStudent') |
---|
| 1282 | label = _('Transfer student') |
---|
| 1283 | form_fields = grok.AutoFields(IStudentStudyCourseTransfer).omit( |
---|
| 1284 | 'entry_mode', 'entry_session') |
---|
| 1285 | pnav = 4 |
---|
| 1286 | |
---|
| 1287 | @jsaction(_('Transfer')) |
---|
| 1288 | def transferStudent(self, **data): |
---|
| 1289 | error = self.context.transfer(**data) |
---|
| 1290 | if error == -1: |
---|
[11254] | 1291 | self.flash(_('Current level does not match certificate levels.'), |
---|
| 1292 | type="warning") |
---|
[9138] | 1293 | elif error == -2: |
---|
[11254] | 1294 | self.flash(_('Former study course record incomplete.'), |
---|
| 1295 | type="warning") |
---|
[9138] | 1296 | elif error == -3: |
---|
[11254] | 1297 | self.flash(_('Maximum number of transfers exceeded.'), |
---|
| 1298 | type="warning") |
---|
[9138] | 1299 | else: |
---|
| 1300 | self.flash(_('Successfully transferred.')) |
---|
| 1301 | return |
---|
| 1302 | |
---|
[10060] | 1303 | class RevertTransferFormPage(KofaEditFormPage): |
---|
| 1304 | """View that reverts the previous transfer. |
---|
| 1305 | """ |
---|
| 1306 | grok.context(IStudent) |
---|
| 1307 | grok.name('revert_transfer') |
---|
| 1308 | grok.require('waeup.manageStudent') |
---|
| 1309 | grok.template('reverttransfer') |
---|
| 1310 | label = _('Revert previous transfer') |
---|
| 1311 | |
---|
| 1312 | def update(self): |
---|
| 1313 | if not self.context.has_key('studycourse_1'): |
---|
[11254] | 1314 | self.flash(_('No previous transfer.'), type="warning") |
---|
[10060] | 1315 | self.redirect(self.url(self.context)) |
---|
| 1316 | return |
---|
| 1317 | return |
---|
| 1318 | |
---|
| 1319 | @jsaction(_('Revert now')) |
---|
| 1320 | def transferStudent(self, **data): |
---|
| 1321 | self.context.revert_transfer() |
---|
| 1322 | self.flash(_('Previous transfer reverted.')) |
---|
| 1323 | self.redirect(self.url(self.context, 'studycourse')) |
---|
| 1324 | return |
---|
| 1325 | |
---|
[7819] | 1326 | class StudyLevelDisplayFormPage(KofaDisplayFormPage): |
---|
[6774] | 1327 | """ Page to display student study levels |
---|
| 1328 | """ |
---|
| 1329 | grok.context(IStudentStudyLevel) |
---|
| 1330 | grok.name('index') |
---|
| 1331 | grok.require('waeup.viewStudent') |
---|
[6775] | 1332 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
[9161] | 1333 | form_fields[ |
---|
| 1334 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6783] | 1335 | grok.template('studylevelpage') |
---|
[6774] | 1336 | pnav = 4 |
---|
| 1337 | |
---|
[7310] | 1338 | def update(self): |
---|
| 1339 | super(StudyLevelDisplayFormPage, self).update() |
---|
| 1340 | return |
---|
| 1341 | |
---|
[6774] | 1342 | @property |
---|
[8141] | 1343 | def translated_values(self): |
---|
[8921] | 1344 | return translated_values(self) |
---|
[8141] | 1345 | |
---|
| 1346 | @property |
---|
[6774] | 1347 | def label(self): |
---|
[7833] | 1348 | # Here we know that the cookie has been set |
---|
| 1349 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 1350 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1351 | target_language=lang) |
---|
| 1352 | return _('${a}: Study Level ${b}', mapping = { |
---|
[8736] | 1353 | 'a':self.context.student.display_fullname, |
---|
[7723] | 1354 | 'b':level_title}) |
---|
[6774] | 1355 | |
---|
[7459] | 1356 | class ExportPDFCourseRegistrationSlipPage(UtilityView, grok.View): |
---|
[7028] | 1357 | """Deliver a PDF slip of the context. |
---|
| 1358 | """ |
---|
| 1359 | grok.context(IStudentStudyLevel) |
---|
[9452] | 1360 | grok.name('course_registration_slip.pdf') |
---|
[7028] | 1361 | grok.require('waeup.viewStudent') |
---|
| 1362 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
[9683] | 1363 | form_fields[ |
---|
| 1364 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7028] | 1365 | prefix = 'form' |
---|
[9702] | 1366 | omit_fields = ( |
---|
[10256] | 1367 | 'password', 'suspended', 'phone', 'date_of_birth', |
---|
[9702] | 1368 | 'adm_code', 'sex', 'suspended_comment') |
---|
[7028] | 1369 | |
---|
| 1370 | @property |
---|
[7723] | 1371 | def title(self): |
---|
[7819] | 1372 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1373 | return translate(_('Level Data'), 'waeup.kofa', |
---|
[7723] | 1374 | target_language=portal_language) |
---|
| 1375 | |
---|
| 1376 | @property |
---|
[7028] | 1377 | def label(self): |
---|
[7819] | 1378 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1379 | lang = self.request.cookies.get('kofa.language', portal_language) |
---|
| 1380 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1381 | target_language=lang) |
---|
[8141] | 1382 | return translate(_('Course Registration Slip'), |
---|
[7811] | 1383 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7723] | 1384 | + ' %s' % level_title |
---|
[7028] | 1385 | |
---|
[10439] | 1386 | @property |
---|
| 1387 | def tabletitle(self): |
---|
| 1388 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1389 | tabletitle = [] |
---|
| 1390 | tabletitle.append(translate(_('1st Semester Courses'), 'waeup.kofa', |
---|
| 1391 | target_language=portal_language)) |
---|
| 1392 | tabletitle.append(translate(_('2nd Semester Courses'), 'waeup.kofa', |
---|
| 1393 | target_language=portal_language)) |
---|
| 1394 | tabletitle.append(translate(_('Level Courses'), 'waeup.kofa', |
---|
| 1395 | target_language=portal_language)) |
---|
| 1396 | return tabletitle |
---|
| 1397 | |
---|
[7028] | 1398 | def render(self): |
---|
[7819] | 1399 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[10436] | 1400 | Term = translate(_('Term'), 'waeup.kofa', target_language=portal_language) |
---|
[7811] | 1401 | Code = translate(_('Code'), 'waeup.kofa', target_language=portal_language) |
---|
| 1402 | Title = translate(_('Title'), 'waeup.kofa', target_language=portal_language) |
---|
| 1403 | Dept = translate(_('Dept.'), 'waeup.kofa', target_language=portal_language) |
---|
| 1404 | Faculty = translate(_('Faculty'), 'waeup.kofa', target_language=portal_language) |
---|
| 1405 | Cred = translate(_('Cred.'), 'waeup.kofa', target_language=portal_language) |
---|
[9906] | 1406 | #Mand = translate(_('Requ.'), 'waeup.kofa', target_language=portal_language) |
---|
[7811] | 1407 | Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) |
---|
[9810] | 1408 | Grade = translate(_('Grade'), 'waeup.kofa', target_language=portal_language) |
---|
[9141] | 1409 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 1410 | self.request, self.omit_fields) |
---|
[7150] | 1411 | students_utils = getUtility(IStudentsUtils) |
---|
[10438] | 1412 | |
---|
| 1413 | tabledata = [] |
---|
| 1414 | tableheader = [] |
---|
| 1415 | contenttitle = [] |
---|
[10439] | 1416 | for i in range(1,7): |
---|
[10438] | 1417 | tabledata.append(sorted( |
---|
| 1418 | [value for value in self.context.values() if value.semester == i], |
---|
| 1419 | key=lambda value: str(value.semester) + value.code)) |
---|
| 1420 | tableheader.append([(Code,'code', 2.5), |
---|
| 1421 | (Title,'title', 5), |
---|
| 1422 | (Dept,'dcode', 1.5), (Faculty,'fcode', 1.5), |
---|
| 1423 | (Cred, 'credits', 1.5), |
---|
| 1424 | #(Mand, 'mandatory', 1.5), |
---|
| 1425 | (Score, 'score', 1.5), |
---|
| 1426 | (Grade, 'grade', 1.5), |
---|
| 1427 | #('Auto', 'automatic', 1.5) |
---|
| 1428 | ]) |
---|
[9906] | 1429 | return students_utils.renderPDF( |
---|
| 1430 | self, 'course_registration_slip.pdf', |
---|
| 1431 | self.context.student, studentview, |
---|
[10438] | 1432 | tableheader=tableheader, |
---|
| 1433 | tabledata=tabledata, |
---|
[10250] | 1434 | omit_fields=self.omit_fields |
---|
[9906] | 1435 | ) |
---|
[7028] | 1436 | |
---|
[7819] | 1437 | class StudyLevelManageFormPage(KofaEditFormPage): |
---|
[6792] | 1438 | """ Page to edit the student study level data |
---|
| 1439 | """ |
---|
| 1440 | grok.context(IStudentStudyLevel) |
---|
| 1441 | grok.name('manage') |
---|
[7136] | 1442 | grok.require('waeup.manageStudent') |
---|
[6792] | 1443 | grok.template('studylevelmanagepage') |
---|
[9161] | 1444 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
[10479] | 1445 | 'validation_date', 'validated_by', 'total_credits', 'gpa') |
---|
[6792] | 1446 | pnav = 4 |
---|
[7723] | 1447 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 1448 | tabtwoactions = [_('Add course ticket'), |
---|
| 1449 | _('Remove selected tickets'),_('Cancel')] |
---|
[11254] | 1450 | placeholder = _('Enter valid course code') |
---|
[6792] | 1451 | |
---|
[9895] | 1452 | def update(self, ADD=None, course=None): |
---|
[9139] | 1453 | if not self.context.__parent__.is_current: |
---|
| 1454 | emit_lock_message(self) |
---|
| 1455 | return |
---|
[6792] | 1456 | super(StudyLevelManageFormPage, self).update() |
---|
[9895] | 1457 | if ADD is not None: |
---|
| 1458 | if not course: |
---|
[11254] | 1459 | self.flash(_('No valid course code entered.'), type="warning") |
---|
| 1460 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[9895] | 1461 | return |
---|
| 1462 | cat = queryUtility(ICatalog, name='courses_catalog') |
---|
| 1463 | result = cat.searchResults(code=(course, course)) |
---|
| 1464 | if len(result) != 1: |
---|
[11254] | 1465 | self.flash(_('Course not found.'), type="warning") |
---|
[9895] | 1466 | else: |
---|
| 1467 | course = list(result)[0] |
---|
| 1468 | addCourseTicket(self, course) |
---|
[11254] | 1469 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6792] | 1470 | return |
---|
| 1471 | |
---|
| 1472 | @property |
---|
[8921] | 1473 | def translated_values(self): |
---|
| 1474 | return translated_values(self) |
---|
| 1475 | |
---|
| 1476 | @property |
---|
[6792] | 1477 | def label(self): |
---|
[7833] | 1478 | # Here we know that the cookie has been set |
---|
| 1479 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 1480 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1481 | target_language=lang) |
---|
| 1482 | return _('Manage study level ${a}', |
---|
| 1483 | mapping = {'a':level_title}) |
---|
[6792] | 1484 | |
---|
[7723] | 1485 | @action(_('Save'), style='primary') |
---|
[6792] | 1486 | def save(self, **data): |
---|
| 1487 | msave(self, **data) |
---|
| 1488 | return |
---|
| 1489 | |
---|
[7723] | 1490 | @jsaction(_('Remove selected tickets')) |
---|
[6792] | 1491 | def delCourseTicket(self, **data): |
---|
| 1492 | form = self.request.form |
---|
[9701] | 1493 | if 'val_id' in form: |
---|
[6792] | 1494 | child_id = form['val_id'] |
---|
| 1495 | else: |
---|
[11254] | 1496 | self.flash(_('No ticket selected.'), type="warning") |
---|
| 1497 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6792] | 1498 | return |
---|
| 1499 | if not isinstance(child_id, list): |
---|
| 1500 | child_id = [child_id] |
---|
| 1501 | deleted = [] |
---|
| 1502 | for id in child_id: |
---|
[7723] | 1503 | del self.context[id] |
---|
| 1504 | deleted.append(id) |
---|
[6792] | 1505 | if len(deleted): |
---|
[7723] | 1506 | self.flash(_('Successfully removed: ${a}', |
---|
| 1507 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 1508 | self.context.writeLogMessage( |
---|
[9924] | 1509 | self,'removed: %s at %s' % |
---|
| 1510 | (', '.join(deleted), self.context.level)) |
---|
[11254] | 1511 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6792] | 1512 | return |
---|
| 1513 | |
---|
[7459] | 1514 | class ValidateCoursesPage(UtilityView, grok.View): |
---|
[7334] | 1515 | """ Validate course list by course adviser |
---|
| 1516 | """ |
---|
| 1517 | grok.context(IStudentStudyLevel) |
---|
| 1518 | grok.name('validate_courses') |
---|
| 1519 | grok.require('waeup.validateStudent') |
---|
| 1520 | |
---|
| 1521 | def update(self): |
---|
[9139] | 1522 | if not self.context.__parent__.is_current: |
---|
| 1523 | emit_lock_message(self) |
---|
| 1524 | return |
---|
[7334] | 1525 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
[11254] | 1526 | self.flash(_('This level does not correspond current level.'), |
---|
| 1527 | type="danger") |
---|
[8736] | 1528 | elif self.context.student.state == REGISTERED: |
---|
| 1529 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[7642] | 1530 | 'validate_courses') |
---|
[7723] | 1531 | self.flash(_('Course list has been validated.')) |
---|
[7334] | 1532 | else: |
---|
[11254] | 1533 | self.flash(_('Student is in the wrong state.'), type="warning") |
---|
[7334] | 1534 | self.redirect(self.url(self.context)) |
---|
| 1535 | return |
---|
| 1536 | |
---|
| 1537 | def render(self): |
---|
| 1538 | return |
---|
| 1539 | |
---|
[7459] | 1540 | class RejectCoursesPage(UtilityView, grok.View): |
---|
[7334] | 1541 | """ Reject course list by course adviser |
---|
| 1542 | """ |
---|
| 1543 | grok.context(IStudentStudyLevel) |
---|
| 1544 | grok.name('reject_courses') |
---|
| 1545 | grok.require('waeup.validateStudent') |
---|
| 1546 | |
---|
| 1547 | def update(self): |
---|
[9139] | 1548 | if not self.context.__parent__.is_current: |
---|
| 1549 | emit_lock_message(self) |
---|
| 1550 | return |
---|
[7334] | 1551 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
[11254] | 1552 | self.flash(_('This level does not correspond current level.'), |
---|
| 1553 | type="danger") |
---|
[7334] | 1554 | self.redirect(self.url(self.context)) |
---|
| 1555 | return |
---|
[8736] | 1556 | elif self.context.student.state == VALIDATED: |
---|
| 1557 | IWorkflowInfo(self.context.student).fireTransition('reset8') |
---|
[7723] | 1558 | message = _('Course list request has been annulled.') |
---|
[7334] | 1559 | self.flash(message) |
---|
[8736] | 1560 | elif self.context.student.state == REGISTERED: |
---|
| 1561 | IWorkflowInfo(self.context.student).fireTransition('reset7') |
---|
[7723] | 1562 | message = _('Course list request has been rejected:') |
---|
[7334] | 1563 | self.flash(message) |
---|
| 1564 | else: |
---|
[11254] | 1565 | self.flash(_('Student is in the wrong state.'), type="warning") |
---|
[7334] | 1566 | self.redirect(self.url(self.context)) |
---|
| 1567 | return |
---|
| 1568 | args = {'subject':message} |
---|
[8736] | 1569 | self.redirect(self.url(self.context.student) + |
---|
[7334] | 1570 | '/contactstudent?%s' % urlencode(args)) |
---|
| 1571 | return |
---|
| 1572 | |
---|
| 1573 | def render(self): |
---|
| 1574 | return |
---|
| 1575 | |
---|
[7819] | 1576 | class CourseTicketAddFormPage(KofaAddFormPage): |
---|
[6808] | 1577 | """Add a course ticket. |
---|
[6795] | 1578 | """ |
---|
| 1579 | grok.context(IStudentStudyLevel) |
---|
| 1580 | grok.name('add') |
---|
[7136] | 1581 | grok.require('waeup.manageStudent') |
---|
[7723] | 1582 | label = _('Add course ticket') |
---|
[9420] | 1583 | form_fields = grok.AutoFields(ICourseTicketAdd) |
---|
[6795] | 1584 | pnav = 4 |
---|
| 1585 | |
---|
[9139] | 1586 | def update(self): |
---|
| 1587 | if not self.context.__parent__.is_current: |
---|
| 1588 | emit_lock_message(self) |
---|
| 1589 | return |
---|
| 1590 | super(CourseTicketAddFormPage, self).update() |
---|
| 1591 | return |
---|
| 1592 | |
---|
[11254] | 1593 | @action(_('Add course ticket'), style='primary') |
---|
[6795] | 1594 | def addCourseTicket(self, **data): |
---|
| 1595 | course = data['course'] |
---|
[9895] | 1596 | success = addCourseTicket(self, course) |
---|
| 1597 | if success: |
---|
[11254] | 1598 | self.redirect(self.url(self.context, u'@@manage')+'#tab2') |
---|
[6795] | 1599 | return |
---|
| 1600 | |
---|
[7834] | 1601 | @action(_('Cancel'), validator=NullValidator) |
---|
[6795] | 1602 | def cancel(self, **data): |
---|
| 1603 | self.redirect(self.url(self.context)) |
---|
| 1604 | |
---|
[7819] | 1605 | class CourseTicketDisplayFormPage(KofaDisplayFormPage): |
---|
[6796] | 1606 | """ Page to display course tickets |
---|
| 1607 | """ |
---|
| 1608 | grok.context(ICourseTicket) |
---|
| 1609 | grok.name('index') |
---|
| 1610 | grok.require('waeup.viewStudent') |
---|
| 1611 | form_fields = grok.AutoFields(ICourseTicket) |
---|
[9684] | 1612 | grok.template('courseticketpage') |
---|
[6796] | 1613 | pnav = 4 |
---|
| 1614 | |
---|
| 1615 | @property |
---|
| 1616 | def label(self): |
---|
[7723] | 1617 | return _('${a}: Course Ticket ${b}', mapping = { |
---|
[8736] | 1618 | 'a':self.context.student.display_fullname, |
---|
[7723] | 1619 | 'b':self.context.code}) |
---|
[6796] | 1620 | |
---|
[7819] | 1621 | class CourseTicketManageFormPage(KofaEditFormPage): |
---|
[6796] | 1622 | """ Page to manage course tickets |
---|
| 1623 | """ |
---|
| 1624 | grok.context(ICourseTicket) |
---|
| 1625 | grok.name('manage') |
---|
[7136] | 1626 | grok.require('waeup.manageStudent') |
---|
[9420] | 1627 | form_fields = grok.AutoFields(ICourseTicket) |
---|
| 1628 | form_fields['title'].for_display = True |
---|
| 1629 | form_fields['fcode'].for_display = True |
---|
| 1630 | form_fields['dcode'].for_display = True |
---|
| 1631 | form_fields['semester'].for_display = True |
---|
| 1632 | form_fields['passmark'].for_display = True |
---|
| 1633 | form_fields['credits'].for_display = True |
---|
[9698] | 1634 | form_fields['mandatory'].for_display = False |
---|
[9420] | 1635 | form_fields['automatic'].for_display = True |
---|
[9422] | 1636 | form_fields['carry_over'].for_display = True |
---|
[6796] | 1637 | pnav = 4 |
---|
[9697] | 1638 | grok.template('courseticketmanagepage') |
---|
[6796] | 1639 | |
---|
| 1640 | @property |
---|
| 1641 | def label(self): |
---|
[7723] | 1642 | return _('Manage course ticket ${a}', mapping = {'a':self.context.code}) |
---|
[6796] | 1643 | |
---|
[7459] | 1644 | @action('Save', style='primary') |
---|
[6796] | 1645 | def save(self, **data): |
---|
| 1646 | msave(self, **data) |
---|
| 1647 | return |
---|
| 1648 | |
---|
[7819] | 1649 | class PaymentsManageFormPage(KofaEditFormPage): |
---|
[6869] | 1650 | """ Page to manage the student payments |
---|
[7642] | 1651 | |
---|
| 1652 | This manage form page is for both students and students officers. |
---|
[6869] | 1653 | """ |
---|
| 1654 | grok.context(IStudentPaymentsContainer) |
---|
[6940] | 1655 | grok.name('index') |
---|
[10080] | 1656 | grok.require('waeup.viewStudent') |
---|
[6869] | 1657 | form_fields = grok.AutoFields(IStudentPaymentsContainer) |
---|
| 1658 | grok.template('paymentsmanagepage') |
---|
| 1659 | pnav = 4 |
---|
| 1660 | |
---|
[10080] | 1661 | @property |
---|
| 1662 | def manage_payments_allowed(self): |
---|
| 1663 | return checkPermission('waeup.payStudent', self.context) |
---|
| 1664 | |
---|
[6940] | 1665 | def unremovable(self, ticket): |
---|
[7251] | 1666 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 1667 | if not usertype: |
---|
| 1668 | return False |
---|
[10080] | 1669 | if not self.manage_payments_allowed: |
---|
| 1670 | return True |
---|
[7251] | 1671 | return (self.request.principal.user_type == 'student' and ticket.r_code) |
---|
[6940] | 1672 | |
---|
[6869] | 1673 | @property |
---|
| 1674 | def label(self): |
---|
[7723] | 1675 | return _('${a}: Payments', |
---|
| 1676 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6869] | 1677 | |
---|
[7723] | 1678 | @jsaction(_('Remove selected tickets')) |
---|
[6869] | 1679 | def delPaymentTicket(self, **data): |
---|
| 1680 | form = self.request.form |
---|
[9701] | 1681 | if 'val_id' in form: |
---|
[6869] | 1682 | child_id = form['val_id'] |
---|
| 1683 | else: |
---|
[11254] | 1684 | self.flash(_('No payment selected.'), type="warning") |
---|
[6940] | 1685 | self.redirect(self.url(self.context)) |
---|
[6869] | 1686 | return |
---|
| 1687 | if not isinstance(child_id, list): |
---|
| 1688 | child_id = [child_id] |
---|
| 1689 | deleted = [] |
---|
| 1690 | for id in child_id: |
---|
[6992] | 1691 | # Students are not allowed to remove used payment tickets |
---|
[10001] | 1692 | ticket = self.context.get(id, None) |
---|
| 1693 | if ticket is not None and not self.unremovable(ticket): |
---|
[7723] | 1694 | del self.context[id] |
---|
| 1695 | deleted.append(id) |
---|
[6869] | 1696 | if len(deleted): |
---|
[7723] | 1697 | self.flash(_('Successfully removed: ${a}', |
---|
| 1698 | mapping = {'a': ', '.join(deleted)})) |
---|
[8735] | 1699 | self.context.writeLogMessage( |
---|
[8885] | 1700 | self,'removed: %s' % ', '.join(deleted)) |
---|
[6940] | 1701 | self.redirect(self.url(self.context)) |
---|
[6869] | 1702 | return |
---|
| 1703 | |
---|
[9517] | 1704 | #@action(_('Add online payment ticket')) |
---|
| 1705 | #def addPaymentTicket(self, **data): |
---|
| 1706 | # self.redirect(self.url(self.context, '@@addop')) |
---|
[6869] | 1707 | |
---|
[7819] | 1708 | class OnlinePaymentAddFormPage(KofaAddFormPage): |
---|
[6869] | 1709 | """ Page to add an online payment ticket |
---|
| 1710 | """ |
---|
| 1711 | grok.context(IStudentPaymentsContainer) |
---|
| 1712 | grok.name('addop') |
---|
[9729] | 1713 | grok.template('onlinepaymentaddform') |
---|
[7181] | 1714 | grok.require('waeup.payStudent') |
---|
[6877] | 1715 | form_fields = grok.AutoFields(IStudentOnlinePayment).select( |
---|
[6869] | 1716 | 'p_category') |
---|
[7723] | 1717 | label = _('Add online payment') |
---|
[6869] | 1718 | pnav = 4 |
---|
[7642] | 1719 | |
---|
[9729] | 1720 | @property |
---|
| 1721 | def selectable_categories(self): |
---|
| 1722 | categories = getUtility(IKofaUtils).SELECTABLE_PAYMENT_CATEGORIES |
---|
| 1723 | return sorted(categories.items()) |
---|
| 1724 | |
---|
[7723] | 1725 | @action(_('Create ticket'), style='primary') |
---|
[6869] | 1726 | def createTicket(self, **data): |
---|
[7024] | 1727 | p_category = data['p_category'] |
---|
[9148] | 1728 | previous_session = data.get('p_session', None) |
---|
| 1729 | previous_level = data.get('p_level', None) |
---|
[7024] | 1730 | student = self.context.__parent__ |
---|
| 1731 | if p_category == 'bed_allocation' and student[ |
---|
| 1732 | 'studycourse'].current_session != grok.getSite()[ |
---|
[8685] | 1733 | 'hostels'].accommodation_session: |
---|
[7024] | 1734 | self.flash( |
---|
[7723] | 1735 | _('Your current session does not match ' + \ |
---|
[11254] | 1736 | 'accommodation session.'), type="danger") |
---|
[7024] | 1737 | return |
---|
[9423] | 1738 | if 'maintenance' in p_category: |
---|
| 1739 | current_session = str(student['studycourse'].current_session) |
---|
[9701] | 1740 | if not current_session in student['accommodation']: |
---|
[11254] | 1741 | self.flash(_('You have not yet booked accommodation.'), |
---|
| 1742 | type="warning") |
---|
[9423] | 1743 | return |
---|
[7150] | 1744 | students_utils = getUtility(IStudentsUtils) |
---|
[9148] | 1745 | error, payment = students_utils.setPaymentDetails( |
---|
| 1746 | p_category, student, previous_session, previous_level) |
---|
[8595] | 1747 | if error is not None: |
---|
[11254] | 1748 | self.flash(error, type="danger") |
---|
[8081] | 1749 | return |
---|
[6869] | 1750 | self.context[payment.p_id] = payment |
---|
[7723] | 1751 | self.flash(_('Payment ticket created.')) |
---|
[6940] | 1752 | self.redirect(self.url(self.context)) |
---|
[6869] | 1753 | return |
---|
| 1754 | |
---|
[9383] | 1755 | @action(_('Cancel'), validator=NullValidator) |
---|
| 1756 | def cancel(self, **data): |
---|
| 1757 | self.redirect(self.url(self.context)) |
---|
| 1758 | |
---|
[9862] | 1759 | class PreviousPaymentAddFormPage(KofaAddFormPage): |
---|
[9148] | 1760 | """ Page to add an online payment ticket for previous sessions |
---|
| 1761 | """ |
---|
| 1762 | grok.context(IStudentPaymentsContainer) |
---|
| 1763 | grok.name('addpp') |
---|
| 1764 | grok.require('waeup.payStudent') |
---|
[9864] | 1765 | form_fields = grok.AutoFields(IStudentPreviousPayment) |
---|
[9148] | 1766 | label = _('Add previous session online payment') |
---|
| 1767 | pnav = 4 |
---|
| 1768 | |
---|
[9517] | 1769 | def update(self): |
---|
[9521] | 1770 | if self.context.student.before_payment: |
---|
[11254] | 1771 | self.flash(_("No previous payment to be made."), type="warning") |
---|
[9517] | 1772 | self.redirect(self.url(self.context)) |
---|
| 1773 | super(PreviousPaymentAddFormPage, self).update() |
---|
| 1774 | return |
---|
| 1775 | |
---|
[9862] | 1776 | @action(_('Create ticket'), style='primary') |
---|
| 1777 | def createTicket(self, **data): |
---|
| 1778 | p_category = data['p_category'] |
---|
| 1779 | previous_session = data.get('p_session', None) |
---|
| 1780 | previous_level = data.get('p_level', None) |
---|
| 1781 | student = self.context.__parent__ |
---|
| 1782 | students_utils = getUtility(IStudentsUtils) |
---|
| 1783 | error, payment = students_utils.setPaymentDetails( |
---|
| 1784 | p_category, student, previous_session, previous_level) |
---|
| 1785 | if error is not None: |
---|
[11254] | 1786 | self.flash(error, type="danger") |
---|
[9862] | 1787 | return |
---|
| 1788 | self.context[payment.p_id] = payment |
---|
| 1789 | self.flash(_('Payment ticket created.')) |
---|
| 1790 | self.redirect(self.url(self.context)) |
---|
| 1791 | return |
---|
| 1792 | |
---|
| 1793 | @action(_('Cancel'), validator=NullValidator) |
---|
| 1794 | def cancel(self, **data): |
---|
| 1795 | self.redirect(self.url(self.context)) |
---|
| 1796 | |
---|
[9864] | 1797 | class BalancePaymentAddFormPage(KofaAddFormPage): |
---|
| 1798 | """ Page to add an online payment ticket for balance sessions |
---|
| 1799 | """ |
---|
| 1800 | grok.context(IStudentPaymentsContainer) |
---|
| 1801 | grok.name('addbp') |
---|
[9938] | 1802 | grok.require('waeup.manageStudent') |
---|
[9864] | 1803 | form_fields = grok.AutoFields(IStudentBalancePayment) |
---|
| 1804 | label = _('Add balance') |
---|
| 1805 | pnav = 4 |
---|
| 1806 | |
---|
| 1807 | @action(_('Create ticket'), style='primary') |
---|
| 1808 | def createTicket(self, **data): |
---|
[9868] | 1809 | p_category = data['p_category'] |
---|
[9864] | 1810 | balance_session = data.get('balance_session', None) |
---|
| 1811 | balance_level = data.get('balance_level', None) |
---|
| 1812 | balance_amount = data.get('balance_amount', None) |
---|
| 1813 | student = self.context.__parent__ |
---|
| 1814 | students_utils = getUtility(IStudentsUtils) |
---|
| 1815 | error, payment = students_utils.setBalanceDetails( |
---|
[9868] | 1816 | p_category, student, balance_session, |
---|
[9864] | 1817 | balance_level, balance_amount) |
---|
| 1818 | if error is not None: |
---|
[11254] | 1819 | self.flash(error, type="danger") |
---|
[9864] | 1820 | return |
---|
| 1821 | self.context[payment.p_id] = payment |
---|
| 1822 | self.flash(_('Payment ticket created.')) |
---|
| 1823 | self.redirect(self.url(self.context)) |
---|
| 1824 | return |
---|
| 1825 | |
---|
| 1826 | @action(_('Cancel'), validator=NullValidator) |
---|
| 1827 | def cancel(self, **data): |
---|
| 1828 | self.redirect(self.url(self.context)) |
---|
| 1829 | |
---|
[7819] | 1830 | class OnlinePaymentDisplayFormPage(KofaDisplayFormPage): |
---|
[6869] | 1831 | """ Page to view an online payment ticket |
---|
| 1832 | """ |
---|
[6877] | 1833 | grok.context(IStudentOnlinePayment) |
---|
[6869] | 1834 | grok.name('index') |
---|
| 1835 | grok.require('waeup.viewStudent') |
---|
[9984] | 1836 | form_fields = grok.AutoFields(IStudentOnlinePayment).omit('p_item') |
---|
[8170] | 1837 | form_fields[ |
---|
| 1838 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1839 | form_fields[ |
---|
| 1840 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6869] | 1841 | pnav = 4 |
---|
| 1842 | |
---|
| 1843 | @property |
---|
| 1844 | def label(self): |
---|
[7723] | 1845 | return _('${a}: Online Payment Ticket ${b}', mapping = { |
---|
[8736] | 1846 | 'a':self.context.student.display_fullname, |
---|
[7723] | 1847 | 'b':self.context.p_id}) |
---|
[6869] | 1848 | |
---|
[8420] | 1849 | class OnlinePaymentApprovePage(UtilityView, grok.View): |
---|
[6930] | 1850 | """ Callback view |
---|
| 1851 | """ |
---|
| 1852 | grok.context(IStudentOnlinePayment) |
---|
[8420] | 1853 | grok.name('approve') |
---|
| 1854 | grok.require('waeup.managePortal') |
---|
[6930] | 1855 | |
---|
| 1856 | def update(self): |
---|
[8428] | 1857 | success, msg, log = self.context.approveStudentPayment() |
---|
| 1858 | if log is not None: |
---|
[9770] | 1859 | # Add log message to students.log |
---|
[8735] | 1860 | self.context.writeLogMessage(self,log) |
---|
[9770] | 1861 | # Add log message to payments.log |
---|
| 1862 | self.context.logger.info( |
---|
[9779] | 1863 | '%s,%s,%s,%s,%s,,,,,,' % ( |
---|
[9770] | 1864 | self.context.student.student_id, |
---|
| 1865 | self.context.p_id, self.context.p_category, |
---|
| 1866 | self.context.amount_auth, self.context.r_code)) |
---|
[8420] | 1867 | self.flash(msg) |
---|
[6940] | 1868 | return |
---|
[6930] | 1869 | |
---|
| 1870 | def render(self): |
---|
[6940] | 1871 | self.redirect(self.url(self.context, '@@index')) |
---|
[6930] | 1872 | return |
---|
| 1873 | |
---|
[8420] | 1874 | class OnlinePaymentFakeApprovePage(OnlinePaymentApprovePage): |
---|
| 1875 | """ Approval view for students. |
---|
| 1876 | |
---|
| 1877 | This view is used for browser tests only and |
---|
| 1878 | must be neutralized in custom pages! |
---|
| 1879 | """ |
---|
| 1880 | |
---|
| 1881 | grok.name('fake_approve') |
---|
| 1882 | grok.require('waeup.payStudent') |
---|
| 1883 | |
---|
[7459] | 1884 | class ExportPDFPaymentSlipPage(UtilityView, grok.View): |
---|
[7019] | 1885 | """Deliver a PDF slip of the context. |
---|
| 1886 | """ |
---|
| 1887 | grok.context(IStudentOnlinePayment) |
---|
[8262] | 1888 | grok.name('payment_slip.pdf') |
---|
[7019] | 1889 | grok.require('waeup.viewStudent') |
---|
[9984] | 1890 | form_fields = grok.AutoFields(IStudentOnlinePayment).omit('p_item') |
---|
[8173] | 1891 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1892 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7019] | 1893 | prefix = 'form' |
---|
[8258] | 1894 | note = None |
---|
[9702] | 1895 | omit_fields = ( |
---|
[10256] | 1896 | 'password', 'suspended', 'phone', 'date_of_birth', |
---|
[9702] | 1897 | 'adm_code', 'sex', 'suspended_comment') |
---|
[7019] | 1898 | |
---|
| 1899 | @property |
---|
[8262] | 1900 | def title(self): |
---|
| 1901 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1902 | return translate(_('Payment Data'), 'waeup.kofa', |
---|
| 1903 | target_language=portal_language) |
---|
| 1904 | |
---|
| 1905 | @property |
---|
[7019] | 1906 | def label(self): |
---|
[8262] | 1907 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1908 | return translate(_('Online Payment Slip'), |
---|
| 1909 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 1910 | + ' %s' % self.context.p_id |
---|
[7019] | 1911 | |
---|
| 1912 | def render(self): |
---|
[8262] | 1913 | #if self.context.p_state != 'paid': |
---|
| 1914 | # self.flash('Ticket not yet paid.') |
---|
| 1915 | # self.redirect(self.url(self.context)) |
---|
| 1916 | # return |
---|
[9141] | 1917 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 1918 | self.request, self.omit_fields) |
---|
[7150] | 1919 | students_utils = getUtility(IStudentsUtils) |
---|
[8262] | 1920 | return students_utils.renderPDF(self, 'payment_slip.pdf', |
---|
[10250] | 1921 | self.context.student, studentview, note=self.note, |
---|
| 1922 | omit_fields=self.omit_fields) |
---|
[7019] | 1923 | |
---|
[6992] | 1924 | |
---|
[7819] | 1925 | class AccommodationManageFormPage(KofaEditFormPage): |
---|
[7009] | 1926 | """ Page to manage bed tickets. |
---|
[7642] | 1927 | |
---|
| 1928 | This manage form page is for both students and students officers. |
---|
[6635] | 1929 | """ |
---|
| 1930 | grok.context(IStudentAccommodation) |
---|
| 1931 | grok.name('index') |
---|
[7181] | 1932 | grok.require('waeup.handleAccommodation') |
---|
[6635] | 1933 | form_fields = grok.AutoFields(IStudentAccommodation) |
---|
[6992] | 1934 | grok.template('accommodationmanagepage') |
---|
[6642] | 1935 | pnav = 4 |
---|
[7723] | 1936 | officers_only_actions = [_('Remove selected')] |
---|
[6635] | 1937 | |
---|
| 1938 | @property |
---|
| 1939 | def label(self): |
---|
[7723] | 1940 | return _('${a}: Accommodation', |
---|
| 1941 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6637] | 1942 | |
---|
[7723] | 1943 | @jsaction(_('Remove selected')) |
---|
[7009] | 1944 | def delBedTickets(self, **data): |
---|
[7240] | 1945 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[11254] | 1946 | self.flash(_('You are not allowed to remove bed tickets.'), |
---|
| 1947 | type="warning") |
---|
[7017] | 1948 | self.redirect(self.url(self.context)) |
---|
| 1949 | return |
---|
[6992] | 1950 | form = self.request.form |
---|
[9701] | 1951 | if 'val_id' in form: |
---|
[6992] | 1952 | child_id = form['val_id'] |
---|
| 1953 | else: |
---|
[11254] | 1954 | self.flash(_('No bed ticket selected.'), type="warning") |
---|
[6992] | 1955 | self.redirect(self.url(self.context)) |
---|
| 1956 | return |
---|
| 1957 | if not isinstance(child_id, list): |
---|
| 1958 | child_id = [child_id] |
---|
| 1959 | deleted = [] |
---|
| 1960 | for id in child_id: |
---|
[7068] | 1961 | del self.context[id] |
---|
| 1962 | deleted.append(id) |
---|
[6992] | 1963 | if len(deleted): |
---|
[7723] | 1964 | self.flash(_('Successfully removed: ${a}', |
---|
| 1965 | mapping = {'a':', '.join(deleted)})) |
---|
[8735] | 1966 | self.context.writeLogMessage( |
---|
| 1967 | self,'removed: % s' % ', '.join(deleted)) |
---|
[6992] | 1968 | self.redirect(self.url(self.context)) |
---|
| 1969 | return |
---|
| 1970 | |
---|
[7009] | 1971 | @property |
---|
| 1972 | def selected_actions(self): |
---|
[7240] | 1973 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[7642] | 1974 | return [action for action in self.actions |
---|
| 1975 | if not action.label in self.officers_only_actions] |
---|
| 1976 | return self.actions |
---|
[7009] | 1977 | |
---|
[7819] | 1978 | class BedTicketAddPage(KofaPage): |
---|
[6992] | 1979 | """ Page to add an online payment ticket |
---|
| 1980 | """ |
---|
| 1981 | grok.context(IStudentAccommodation) |
---|
| 1982 | grok.name('add') |
---|
[7181] | 1983 | grok.require('waeup.handleAccommodation') |
---|
[6992] | 1984 | grok.template('enterpin') |
---|
[6993] | 1985 | ac_prefix = 'HOS' |
---|
[7723] | 1986 | label = _('Add bed ticket') |
---|
[6992] | 1987 | pnav = 4 |
---|
[7723] | 1988 | buttonname = _('Create bed ticket') |
---|
[6993] | 1989 | notice = '' |
---|
[9188] | 1990 | with_ac = True |
---|
[6992] | 1991 | |
---|
| 1992 | def update(self, SUBMIT=None): |
---|
[8736] | 1993 | student = self.context.student |
---|
[7150] | 1994 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1995 | acc_details = students_utils.getAccommodationDetails(student) |
---|
[8688] | 1996 | if acc_details.get('expired', False): |
---|
| 1997 | startdate = acc_details.get('startdate') |
---|
| 1998 | enddate = acc_details.get('enddate') |
---|
| 1999 | if startdate and enddate: |
---|
| 2000 | tz = getUtility(IKofaUtils).tzinfo |
---|
| 2001 | startdate = to_timezone( |
---|
| 2002 | startdate, tz).strftime("%d/%m/%Y %H:%M:%S") |
---|
| 2003 | enddate = to_timezone( |
---|
| 2004 | enddate, tz).strftime("%d/%m/%Y %H:%M:%S") |
---|
| 2005 | self.flash(_("Outside booking period: ${a} - ${b}", |
---|
[11254] | 2006 | mapping = {'a': startdate, 'b': enddate}), type="warning") |
---|
[8688] | 2007 | else: |
---|
[11254] | 2008 | self.flash(_("Outside booking period."), type="warning") |
---|
[8688] | 2009 | self.redirect(self.url(self.context)) |
---|
| 2010 | return |
---|
[7369] | 2011 | if not acc_details: |
---|
[11254] | 2012 | self.flash(_("Your data are incomplete."), type="warning") |
---|
[7369] | 2013 | self.redirect(self.url(self.context)) |
---|
| 2014 | return |
---|
[6996] | 2015 | if not student.state in acc_details['allowed_states']: |
---|
[11254] | 2016 | self.flash(_("You are in the wrong registration state."), |
---|
| 2017 | type="warning") |
---|
[6992] | 2018 | self.redirect(self.url(self.context)) |
---|
| 2019 | return |
---|
[7642] | 2020 | if student['studycourse'].current_session != acc_details[ |
---|
| 2021 | 'booking_session']: |
---|
[7061] | 2022 | self.flash( |
---|
[11254] | 2023 | _('Your current session does not match accommodation session.'), |
---|
| 2024 | type="warning") |
---|
[7061] | 2025 | self.redirect(self.url(self.context)) |
---|
| 2026 | return |
---|
| 2027 | if str(acc_details['booking_session']) in self.context.keys(): |
---|
[7642] | 2028 | self.flash( |
---|
[7723] | 2029 | _('You already booked a bed space in current ' \ |
---|
[11254] | 2030 | + 'accommodation session.'), type="warning") |
---|
[7004] | 2031 | self.redirect(self.url(self.context)) |
---|
| 2032 | return |
---|
[9188] | 2033 | if self.with_ac: |
---|
| 2034 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2035 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6992] | 2036 | if SUBMIT is None: |
---|
| 2037 | return |
---|
[9188] | 2038 | if self.with_ac: |
---|
| 2039 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2040 | code = get_access_code(pin) |
---|
| 2041 | if not code: |
---|
[11254] | 2042 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[9188] | 2043 | return |
---|
[7060] | 2044 | # Search and book bed |
---|
[6997] | 2045 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 2046 | entries = cat.searchResults( |
---|
[7003] | 2047 | owner=(student.student_id,student.student_id)) |
---|
| 2048 | if len(entries): |
---|
[9188] | 2049 | # If bed space has been manually allocated use this bed |
---|
[7003] | 2050 | bed = [entry for entry in entries][0] |
---|
[9424] | 2051 | # Safety belt for paranoids: Does this bed really exist on portal? |
---|
| 2052 | # XXX: Can be remove if nobody complains. |
---|
| 2053 | if bed.__parent__.__parent__ is None: |
---|
[11254] | 2054 | self.flash(_('System error: Please contact the adminsitrator.'), |
---|
| 2055 | type="danger") |
---|
[9428] | 2056 | self.context.writeLogMessage(self, 'fatal error: %s' % bed.bed_id) |
---|
[9424] | 2057 | return |
---|
[7060] | 2058 | else: |
---|
| 2059 | # else search for other available beds |
---|
| 2060 | entries = cat.searchResults( |
---|
| 2061 | bed_type=(acc_details['bt'],acc_details['bt'])) |
---|
| 2062 | available_beds = [ |
---|
| 2063 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
| 2064 | if available_beds: |
---|
[7150] | 2065 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 2066 | bed = students_utils.selectBed(available_beds) |
---|
[9424] | 2067 | # Safety belt for paranoids: Does this bed really exist in portal? |
---|
| 2068 | # XXX: Can be remove if nobody complains. |
---|
| 2069 | if bed.__parent__.__parent__ is None: |
---|
[11254] | 2070 | self.flash(_('System error: Please contact the adminsitrator.'), |
---|
| 2071 | type="warning") |
---|
[9428] | 2072 | self.context.writeLogMessage(self, 'fatal error: %s' % bed.bed_id) |
---|
[9424] | 2073 | return |
---|
[7060] | 2074 | bed.bookBed(student.student_id) |
---|
| 2075 | else: |
---|
[7723] | 2076 | self.flash(_('There is no free bed in your category ${a}.', |
---|
[11254] | 2077 | mapping = {'a':acc_details['bt']}), type="warning") |
---|
[7060] | 2078 | return |
---|
[9188] | 2079 | if self.with_ac: |
---|
| 2080 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2081 | if code.state == USED: |
---|
[11254] | 2082 | self.flash(_('Activation code has already been used.'), |
---|
| 2083 | type="warning") |
---|
[6992] | 2084 | return |
---|
[9188] | 2085 | else: |
---|
| 2086 | comment = _(u'invalidated') |
---|
| 2087 | # Here we know that the ac is in state initialized so we do not |
---|
| 2088 | # expect an exception, but the owner might be different |
---|
| 2089 | if not invalidate_accesscode( |
---|
| 2090 | pin,comment,self.context.student.student_id): |
---|
[11254] | 2091 | self.flash(_('You are not the owner of this access code.'), |
---|
| 2092 | type="warning") |
---|
[9188] | 2093 | return |
---|
[7060] | 2094 | # Create bed ticket |
---|
[6992] | 2095 | bedticket = createObject(u'waeup.BedTicket') |
---|
[9189] | 2096 | if self.with_ac: |
---|
| 2097 | bedticket.booking_code = pin |
---|
[6994] | 2098 | bedticket.booking_session = acc_details['booking_session'] |
---|
[6996] | 2099 | bedticket.bed_type = acc_details['bt'] |
---|
[7006] | 2100 | bedticket.bed = bed |
---|
[6996] | 2101 | hall_title = bed.__parent__.hostel_name |
---|
[9199] | 2102 | coordinates = bed.coordinates[1:] |
---|
[6996] | 2103 | block, room_nr, bed_nr = coordinates |
---|
[7723] | 2104 | bc = _('${a}, Block ${b}, Room ${c}, Bed ${d} (${e})', mapping = { |
---|
| 2105 | 'a':hall_title, 'b':block, |
---|
| 2106 | 'c':room_nr, 'd':bed_nr, |
---|
| 2107 | 'e':bed.bed_type}) |
---|
[7819] | 2108 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7723] | 2109 | bedticket.bed_coordinates = translate( |
---|
[7811] | 2110 | bc, 'waeup.kofa',target_language=portal_language) |
---|
[9423] | 2111 | self.context.addBedTicket(bedticket) |
---|
[9411] | 2112 | self.context.writeLogMessage(self, 'booked: %s' % bed.bed_id) |
---|
[7723] | 2113 | self.flash(_('Bed ticket created and bed booked: ${a}', |
---|
[9984] | 2114 | mapping = {'a':bedticket.display_coordinates})) |
---|
[6992] | 2115 | self.redirect(self.url(self.context)) |
---|
| 2116 | return |
---|
| 2117 | |
---|
[7819] | 2118 | class BedTicketDisplayFormPage(KofaDisplayFormPage): |
---|
[6994] | 2119 | """ Page to display bed tickets |
---|
| 2120 | """ |
---|
| 2121 | grok.context(IBedTicket) |
---|
| 2122 | grok.name('index') |
---|
[7181] | 2123 | grok.require('waeup.handleAccommodation') |
---|
[9984] | 2124 | form_fields = grok.AutoFields(IBedTicket).omit('bed_coordinates') |
---|
[9201] | 2125 | form_fields['booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6994] | 2126 | pnav = 4 |
---|
| 2127 | |
---|
| 2128 | @property |
---|
| 2129 | def label(self): |
---|
[7723] | 2130 | return _('Bed Ticket for Session ${a}', |
---|
| 2131 | mapping = {'a':self.context.getSessionString()}) |
---|
[6994] | 2132 | |
---|
[7459] | 2133 | class ExportPDFBedTicketSlipPage(UtilityView, grok.View): |
---|
[7027] | 2134 | """Deliver a PDF slip of the context. |
---|
| 2135 | """ |
---|
| 2136 | grok.context(IBedTicket) |
---|
[9452] | 2137 | grok.name('bed_allocation_slip.pdf') |
---|
[7181] | 2138 | grok.require('waeup.handleAccommodation') |
---|
[9984] | 2139 | form_fields = grok.AutoFields(IBedTicket).omit('bed_coordinates') |
---|
[8173] | 2140 | form_fields['booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7027] | 2141 | prefix = 'form' |
---|
[9702] | 2142 | omit_fields = ( |
---|
[10256] | 2143 | 'password', 'suspended', 'phone', 'adm_code', |
---|
| 2144 | 'suspended_comment', 'date_of_birth') |
---|
[7027] | 2145 | |
---|
| 2146 | @property |
---|
[7723] | 2147 | def title(self): |
---|
[7819] | 2148 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 2149 | return translate(_('Bed Allocation Data'), 'waeup.kofa', |
---|
[7723] | 2150 | target_language=portal_language) |
---|
| 2151 | |
---|
| 2152 | @property |
---|
[7027] | 2153 | def label(self): |
---|
[7819] | 2154 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[9201] | 2155 | #return translate(_('Bed Allocation: '), |
---|
| 2156 | # 'waeup.kofa', target_language=portal_language) \ |
---|
| 2157 | # + ' %s' % self.context.bed_coordinates |
---|
| 2158 | return translate(_('Bed Allocation Slip'), |
---|
[7811] | 2159 | 'waeup.kofa', target_language=portal_language) \ |
---|
[9201] | 2160 | + ' %s' % self.context.getSessionString() |
---|
[7027] | 2161 | |
---|
| 2162 | def render(self): |
---|
[9141] | 2163 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 2164 | self.request, self.omit_fields) |
---|
[7150] | 2165 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 2166 | return students_utils.renderPDF( |
---|
[9452] | 2167 | self, 'bed_allocation_slip.pdf', |
---|
[10250] | 2168 | self.context.student, studentview, |
---|
| 2169 | omit_fields=self.omit_fields) |
---|
[7027] | 2170 | |
---|
[7459] | 2171 | class BedTicketRelocationPage(UtilityView, grok.View): |
---|
[7015] | 2172 | """ Callback view |
---|
| 2173 | """ |
---|
| 2174 | grok.context(IBedTicket) |
---|
| 2175 | grok.name('relocate') |
---|
| 2176 | grok.require('waeup.manageHostels') |
---|
| 2177 | |
---|
[7059] | 2178 | # Relocate student if student parameters have changed or the bed_type |
---|
| 2179 | # of the bed has changed |
---|
[7015] | 2180 | def update(self): |
---|
[8736] | 2181 | student = self.context.student |
---|
[7150] | 2182 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 2183 | acc_details = students_utils.getAccommodationDetails(student) |
---|
[7068] | 2184 | if self.context.bed != None and \ |
---|
| 2185 | 'reserved' in self.context.bed.bed_type: |
---|
[11254] | 2186 | self.flash(_("Students in reserved beds can't be relocated."), |
---|
| 2187 | type="warning") |
---|
[7068] | 2188 | self.redirect(self.url(self.context)) |
---|
| 2189 | return |
---|
[7059] | 2190 | if acc_details['bt'] == self.context.bed_type and \ |
---|
[7068] | 2191 | self.context.bed != None and \ |
---|
[7059] | 2192 | self.context.bed.bed_type == self.context.bed_type: |
---|
[11254] | 2193 | self.flash(_("Student can't be relocated."), type="warning") |
---|
[7068] | 2194 | self.redirect(self.url(self.context)) |
---|
[7015] | 2195 | return |
---|
[7068] | 2196 | # Search a bed |
---|
[7015] | 2197 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 2198 | entries = cat.searchResults( |
---|
[7068] | 2199 | owner=(student.student_id,student.student_id)) |
---|
| 2200 | if len(entries) and self.context.bed == None: |
---|
| 2201 | # If booking has been cancelled but other bed space has been |
---|
| 2202 | # manually allocated after cancellation use this bed |
---|
| 2203 | new_bed = [entry for entry in entries][0] |
---|
| 2204 | else: |
---|
| 2205 | # Search for other available beds |
---|
| 2206 | entries = cat.searchResults( |
---|
| 2207 | bed_type=(acc_details['bt'],acc_details['bt'])) |
---|
| 2208 | available_beds = [ |
---|
| 2209 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
| 2210 | if available_beds: |
---|
[7150] | 2211 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 2212 | new_bed = students_utils.selectBed(available_beds) |
---|
[7068] | 2213 | new_bed.bookBed(student.student_id) |
---|
| 2214 | else: |
---|
[7723] | 2215 | self.flash(_('There is no free bed in your category ${a}.', |
---|
[11254] | 2216 | mapping = {'a':acc_details['bt']}), type="warning") |
---|
[7068] | 2217 | self.redirect(self.url(self.context)) |
---|
| 2218 | return |
---|
[7642] | 2219 | # Release old bed if exists |
---|
[7068] | 2220 | if self.context.bed != None: |
---|
| 2221 | self.context.bed.owner = NOT_OCCUPIED |
---|
| 2222 | notify(grok.ObjectModifiedEvent(self.context.bed)) |
---|
[7015] | 2223 | # Alocate new bed |
---|
| 2224 | self.context.bed_type = acc_details['bt'] |
---|
[7068] | 2225 | self.context.bed = new_bed |
---|
| 2226 | hall_title = new_bed.__parent__.hostel_name |
---|
[9199] | 2227 | coordinates = new_bed.coordinates[1:] |
---|
[7015] | 2228 | block, room_nr, bed_nr = coordinates |
---|
[7723] | 2229 | bc = _('${a}, Block ${b}, Room ${c}, Bed ${d} (${e})', mapping = { |
---|
| 2230 | 'a':hall_title, 'b':block, |
---|
| 2231 | 'c':room_nr, 'd':bed_nr, |
---|
| 2232 | 'e':new_bed.bed_type}) |
---|
[7819] | 2233 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7723] | 2234 | self.context.bed_coordinates = translate( |
---|
[7811] | 2235 | bc, 'waeup.kofa',target_language=portal_language) |
---|
[9411] | 2236 | self.context.writeLogMessage(self, 'relocated: %s' % new_bed.bed_id) |
---|
[7723] | 2237 | self.flash(_('Student relocated: ${a}', |
---|
[9984] | 2238 | mapping = {'a':self.context.display_coordinates})) |
---|
[7015] | 2239 | self.redirect(self.url(self.context)) |
---|
| 2240 | return |
---|
| 2241 | |
---|
| 2242 | def render(self): |
---|
| 2243 | return |
---|
| 2244 | |
---|
[7819] | 2245 | class StudentHistoryPage(KofaPage): |
---|
[6637] | 2246 | """ Page to display student clearance data |
---|
| 2247 | """ |
---|
| 2248 | grok.context(IStudent) |
---|
| 2249 | grok.name('history') |
---|
[6660] | 2250 | grok.require('waeup.viewStudent') |
---|
[6637] | 2251 | grok.template('studenthistory') |
---|
[6642] | 2252 | pnav = 4 |
---|
[6637] | 2253 | |
---|
| 2254 | @property |
---|
| 2255 | def label(self): |
---|
[7723] | 2256 | return _('${a}: History', mapping = {'a':self.context.display_fullname}) |
---|
[6694] | 2257 | |
---|
| 2258 | # Pages for students only |
---|
| 2259 | |
---|
[7819] | 2260 | class StudentBaseEditFormPage(KofaEditFormPage): |
---|
[7133] | 2261 | """ View to edit student base data |
---|
| 2262 | """ |
---|
| 2263 | grok.context(IStudent) |
---|
| 2264 | grok.name('edit_base') |
---|
| 2265 | grok.require('waeup.handleStudent') |
---|
| 2266 | form_fields = grok.AutoFields(IStudentBase).select( |
---|
| 2267 | 'email', 'phone') |
---|
[7723] | 2268 | label = _('Edit base data') |
---|
[7133] | 2269 | pnav = 4 |
---|
| 2270 | |
---|
[7723] | 2271 | @action(_('Save'), style='primary') |
---|
[7133] | 2272 | def save(self, **data): |
---|
| 2273 | msave(self, **data) |
---|
| 2274 | return |
---|
| 2275 | |
---|
[7819] | 2276 | class StudentChangePasswordPage(KofaEditFormPage): |
---|
[7144] | 2277 | """ View to manage student base data |
---|
[6756] | 2278 | """ |
---|
| 2279 | grok.context(IStudent) |
---|
[7114] | 2280 | grok.name('change_password') |
---|
[6694] | 2281 | grok.require('waeup.handleStudent') |
---|
[7144] | 2282 | grok.template('change_password') |
---|
[7723] | 2283 | label = _('Change password') |
---|
[6694] | 2284 | pnav = 4 |
---|
| 2285 | |
---|
[7723] | 2286 | @action(_('Save'), style='primary') |
---|
[7144] | 2287 | def save(self, **data): |
---|
| 2288 | form = self.request.form |
---|
| 2289 | password = form.get('change_password', None) |
---|
| 2290 | password_ctl = form.get('change_password_repeat', None) |
---|
| 2291 | if password: |
---|
[7147] | 2292 | validator = getUtility(IPasswordValidator) |
---|
| 2293 | errors = validator.validate_password(password, password_ctl) |
---|
| 2294 | if not errors: |
---|
| 2295 | IUserAccount(self.context).setPassword(password) |
---|
[8735] | 2296 | self.context.writeLogMessage(self, 'saved: password') |
---|
[7723] | 2297 | self.flash(_('Password changed.')) |
---|
[6756] | 2298 | else: |
---|
[11254] | 2299 | self.flash( ' '.join(errors), type="warning") |
---|
[6756] | 2300 | return |
---|
| 2301 | |
---|
[7819] | 2302 | class StudentFilesUploadPage(KofaPage): |
---|
[7114] | 2303 | """ View to upload files by student |
---|
| 2304 | """ |
---|
| 2305 | grok.context(IStudent) |
---|
| 2306 | grok.name('change_portrait') |
---|
[7127] | 2307 | grok.require('waeup.uploadStudentFile') |
---|
[7114] | 2308 | grok.template('filesuploadpage') |
---|
[7723] | 2309 | label = _('Upload portrait') |
---|
[7114] | 2310 | pnav = 4 |
---|
| 2311 | |
---|
[7133] | 2312 | def update(self): |
---|
[10706] | 2313 | PWCHANGE_STATES = getUtility(IStudentsUtils).PWCHANGE_STATES |
---|
| 2314 | if self.context.student.state not in PWCHANGE_STATES: |
---|
[7145] | 2315 | emit_lock_message(self) |
---|
[7133] | 2316 | return |
---|
| 2317 | super(StudentFilesUploadPage, self).update() |
---|
| 2318 | return |
---|
| 2319 | |
---|
[7819] | 2320 | class StartClearancePage(KofaPage): |
---|
[6770] | 2321 | grok.context(IStudent) |
---|
| 2322 | grok.name('start_clearance') |
---|
| 2323 | grok.require('waeup.handleStudent') |
---|
| 2324 | grok.template('enterpin') |
---|
[7723] | 2325 | label = _('Start clearance') |
---|
[6770] | 2326 | ac_prefix = 'CLR' |
---|
| 2327 | notice = '' |
---|
| 2328 | pnav = 4 |
---|
[7723] | 2329 | buttonname = _('Start clearance now') |
---|
[9952] | 2330 | with_ac = True |
---|
[6770] | 2331 | |
---|
[7133] | 2332 | @property |
---|
| 2333 | def all_required_fields_filled(self): |
---|
| 2334 | if self.context.email and self.context.phone: |
---|
| 2335 | return True |
---|
| 2336 | return False |
---|
| 2337 | |
---|
| 2338 | @property |
---|
| 2339 | def portrait_uploaded(self): |
---|
| 2340 | store = getUtility(IExtFileStore) |
---|
| 2341 | if store.getFileByContext(self.context, attr=u'passport.jpg'): |
---|
| 2342 | return True |
---|
| 2343 | return False |
---|
| 2344 | |
---|
[6770] | 2345 | def update(self, SUBMIT=None): |
---|
[7671] | 2346 | if not self.context.state == ADMITTED: |
---|
[11254] | 2347 | self.flash(_("Wrong state"), type="warning") |
---|
[6936] | 2348 | self.redirect(self.url(self.context)) |
---|
| 2349 | return |
---|
[7133] | 2350 | if not self.portrait_uploaded: |
---|
[11254] | 2351 | self.flash(_("No portrait uploaded."), type="warning") |
---|
[7133] | 2352 | self.redirect(self.url(self.context, 'change_portrait')) |
---|
| 2353 | return |
---|
| 2354 | if not self.all_required_fields_filled: |
---|
[11254] | 2355 | self.flash(_("Not all required fields filled."), type="warning") |
---|
[7133] | 2356 | self.redirect(self.url(self.context, 'edit_base')) |
---|
| 2357 | return |
---|
[9952] | 2358 | if self.with_ac: |
---|
| 2359 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2360 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6770] | 2361 | if SUBMIT is None: |
---|
| 2362 | return |
---|
[9952] | 2363 | if self.with_ac: |
---|
| 2364 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2365 | code = get_access_code(pin) |
---|
| 2366 | if not code: |
---|
[11254] | 2367 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[9952] | 2368 | return |
---|
| 2369 | if code.state == USED: |
---|
[11254] | 2370 | self.flash(_('Activation code has already been used.'), |
---|
| 2371 | type="warning") |
---|
[9952] | 2372 | return |
---|
| 2373 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2374 | # and fire transition start_clearance |
---|
| 2375 | comment = _(u"invalidated") |
---|
| 2376 | # Here we know that the ac is in state initialized so we do not |
---|
| 2377 | # expect an exception, but the owner might be different |
---|
| 2378 | if not invalidate_accesscode(pin, comment, self.context.student_id): |
---|
[11254] | 2379 | self.flash(_('You are not the owner of this access code.'), |
---|
| 2380 | type="warning") |
---|
[9952] | 2381 | return |
---|
| 2382 | self.context.clr_code = pin |
---|
[6770] | 2383 | IWorkflowInfo(self.context).fireTransition('start_clearance') |
---|
[7723] | 2384 | self.flash(_('Clearance process has been started.')) |
---|
[6770] | 2385 | self.redirect(self.url(self.context,'cedit')) |
---|
| 2386 | return |
---|
| 2387 | |
---|
[6695] | 2388 | class StudentClearanceEditFormPage(StudentClearanceManageFormPage): |
---|
| 2389 | """ View to edit student clearance data by student |
---|
| 2390 | """ |
---|
| 2391 | grok.context(IStudent) |
---|
| 2392 | grok.name('cedit') |
---|
| 2393 | grok.require('waeup.handleStudent') |
---|
[7723] | 2394 | label = _('Edit clearance data') |
---|
[6718] | 2395 | |
---|
[7993] | 2396 | @property |
---|
| 2397 | def form_fields(self): |
---|
[8472] | 2398 | if self.context.is_postgrad: |
---|
[8974] | 2399 | form_fields = grok.AutoFields(IPGStudentClearance).omit( |
---|
[9486] | 2400 | 'clearance_locked', 'clr_code', 'officer_comment') |
---|
[7993] | 2401 | else: |
---|
[8974] | 2402 | form_fields = grok.AutoFields(IUGStudentClearance).omit( |
---|
[9486] | 2403 | 'clearance_locked', 'clr_code', 'officer_comment') |
---|
[7993] | 2404 | return form_fields |
---|
| 2405 | |
---|
[6718] | 2406 | def update(self): |
---|
| 2407 | if self.context.clearance_locked: |
---|
[7145] | 2408 | emit_lock_message(self) |
---|
[6718] | 2409 | return |
---|
| 2410 | return super(StudentClearanceEditFormPage, self).update() |
---|
[6719] | 2411 | |
---|
[7723] | 2412 | @action(_('Save'), style='primary') |
---|
[6722] | 2413 | def save(self, **data): |
---|
| 2414 | self.applyData(self.context, **data) |
---|
[7723] | 2415 | self.flash(_('Clearance form has been saved.')) |
---|
[6722] | 2416 | return |
---|
| 2417 | |
---|
[7253] | 2418 | def dataNotComplete(self): |
---|
[7642] | 2419 | """To be implemented in the customization package. |
---|
| 2420 | """ |
---|
[7253] | 2421 | return False |
---|
| 2422 | |
---|
[7723] | 2423 | @action(_('Save and request clearance'), style='primary') |
---|
[7186] | 2424 | def requestClearance(self, **data): |
---|
[6722] | 2425 | self.applyData(self.context, **data) |
---|
[7253] | 2426 | if self.dataNotComplete(): |
---|
[11254] | 2427 | self.flash(self.dataNotComplete(), type="warning") |
---|
[7253] | 2428 | return |
---|
[7723] | 2429 | self.flash(_('Clearance form has been saved.')) |
---|
[9021] | 2430 | if self.context.clr_code: |
---|
| 2431 | self.redirect(self.url(self.context, 'request_clearance')) |
---|
| 2432 | else: |
---|
| 2433 | # We bypass the request_clearance page if student |
---|
| 2434 | # has been imported in state 'clearance started' and |
---|
| 2435 | # no clr_code was entered before. |
---|
| 2436 | state = IWorkflowState(self.context).getState() |
---|
| 2437 | if state != CLEARANCE: |
---|
| 2438 | # This shouldn't happen, but the application officer |
---|
| 2439 | # might have forgotten to lock the form after changing the state |
---|
[11254] | 2440 | self.flash(_('This form cannot be submitted. Wrong state!'), |
---|
| 2441 | type="danger") |
---|
[9021] | 2442 | return |
---|
| 2443 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
| 2444 | self.flash(_('Clearance has been requested.')) |
---|
| 2445 | self.redirect(self.url(self.context)) |
---|
[6722] | 2446 | return |
---|
| 2447 | |
---|
[7819] | 2448 | class RequestClearancePage(KofaPage): |
---|
[6769] | 2449 | grok.context(IStudent) |
---|
| 2450 | grok.name('request_clearance') |
---|
| 2451 | grok.require('waeup.handleStudent') |
---|
| 2452 | grok.template('enterpin') |
---|
[7723] | 2453 | label = _('Request clearance') |
---|
| 2454 | notice = _('Enter the CLR access code used for starting clearance.') |
---|
[6769] | 2455 | ac_prefix = 'CLR' |
---|
| 2456 | pnav = 4 |
---|
[7723] | 2457 | buttonname = _('Request clearance now') |
---|
[9952] | 2458 | with_ac = True |
---|
[6769] | 2459 | |
---|
| 2460 | def update(self, SUBMIT=None): |
---|
[9952] | 2461 | if self.with_ac: |
---|
| 2462 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2463 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6769] | 2464 | if SUBMIT is None: |
---|
| 2465 | return |
---|
[9952] | 2466 | if self.with_ac: |
---|
| 2467 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2468 | if self.context.clr_code and self.context.clr_code != pin: |
---|
[11254] | 2469 | self.flash(_("This isn't your CLR access code."), type="danger") |
---|
[9952] | 2470 | return |
---|
[6769] | 2471 | state = IWorkflowState(self.context).getState() |
---|
| 2472 | if state != CLEARANCE: |
---|
[9021] | 2473 | # This shouldn't happen, but the application officer |
---|
| 2474 | # might have forgotten to lock the form after changing the state |
---|
[11254] | 2475 | self.flash(_('This form cannot be submitted. Wrong state!'), |
---|
| 2476 | type="danger") |
---|
[6769] | 2477 | return |
---|
| 2478 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
[7723] | 2479 | self.flash(_('Clearance has been requested.')) |
---|
[6769] | 2480 | self.redirect(self.url(self.context)) |
---|
[6789] | 2481 | return |
---|
[6806] | 2482 | |
---|
[8471] | 2483 | class StartSessionPage(KofaPage): |
---|
[6944] | 2484 | grok.context(IStudentStudyCourse) |
---|
[8471] | 2485 | grok.name('start_session') |
---|
[6944] | 2486 | grok.require('waeup.handleStudent') |
---|
| 2487 | grok.template('enterpin') |
---|
[8471] | 2488 | label = _('Start session') |
---|
[6944] | 2489 | ac_prefix = 'SFE' |
---|
| 2490 | notice = '' |
---|
| 2491 | pnav = 4 |
---|
[8471] | 2492 | buttonname = _('Start now') |
---|
[9952] | 2493 | with_ac = True |
---|
[6944] | 2494 | |
---|
| 2495 | def update(self, SUBMIT=None): |
---|
[9139] | 2496 | if not self.context.is_current: |
---|
| 2497 | emit_lock_message(self) |
---|
| 2498 | return |
---|
| 2499 | super(StartSessionPage, self).update() |
---|
[8471] | 2500 | if not self.context.next_session_allowed: |
---|
[11254] | 2501 | self.flash(_("You are not entitled to start session."), |
---|
| 2502 | type="warning") |
---|
[6944] | 2503 | self.redirect(self.url(self.context)) |
---|
| 2504 | return |
---|
[9952] | 2505 | if self.with_ac: |
---|
| 2506 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2507 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6944] | 2508 | if SUBMIT is None: |
---|
| 2509 | return |
---|
[9952] | 2510 | if self.with_ac: |
---|
| 2511 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2512 | code = get_access_code(pin) |
---|
| 2513 | if not code: |
---|
[11254] | 2514 | self.flash(_('Activation code is invalid.'), type="warning") |
---|
[6944] | 2515 | return |
---|
[9952] | 2516 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2517 | if code.state == USED: |
---|
[11254] | 2518 | self.flash(_('Activation code has already been used.'), |
---|
| 2519 | type="warning") |
---|
[9952] | 2520 | return |
---|
| 2521 | else: |
---|
| 2522 | comment = _(u"invalidated") |
---|
| 2523 | # Here we know that the ac is in state initialized so we do not |
---|
| 2524 | # expect an error, but the owner might be different |
---|
| 2525 | if not invalidate_accesscode( |
---|
| 2526 | pin,comment,self.context.student.student_id): |
---|
[11254] | 2527 | self.flash(_('You are not the owner of this access code.'), |
---|
| 2528 | type="warning") |
---|
[9952] | 2529 | return |
---|
[9637] | 2530 | try: |
---|
| 2531 | if self.context.student.state == CLEARED: |
---|
| 2532 | IWorkflowInfo(self.context.student).fireTransition( |
---|
| 2533 | 'pay_first_school_fee') |
---|
| 2534 | elif self.context.student.state == RETURNING: |
---|
| 2535 | IWorkflowInfo(self.context.student).fireTransition( |
---|
| 2536 | 'pay_school_fee') |
---|
| 2537 | elif self.context.student.state == PAID: |
---|
| 2538 | IWorkflowInfo(self.context.student).fireTransition( |
---|
| 2539 | 'pay_pg_fee') |
---|
| 2540 | except ConstraintNotSatisfied: |
---|
[11254] | 2541 | self.flash(_('An error occurred, please contact the system administrator.'), |
---|
| 2542 | type="danger") |
---|
[9637] | 2543 | return |
---|
[8471] | 2544 | self.flash(_('Session started.')) |
---|
[6944] | 2545 | self.redirect(self.url(self.context)) |
---|
| 2546 | return |
---|
| 2547 | |
---|
[7819] | 2548 | class AddStudyLevelFormPage(KofaEditFormPage): |
---|
[6806] | 2549 | """ Page for students to add current study levels |
---|
| 2550 | """ |
---|
| 2551 | grok.context(IStudentStudyCourse) |
---|
| 2552 | grok.name('add') |
---|
| 2553 | grok.require('waeup.handleStudent') |
---|
| 2554 | grok.template('studyleveladdpage') |
---|
| 2555 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 2556 | pnav = 4 |
---|
| 2557 | |
---|
| 2558 | @property |
---|
| 2559 | def label(self): |
---|
| 2560 | studylevelsource = StudyLevelSource().factory |
---|
| 2561 | code = self.context.current_level |
---|
| 2562 | title = studylevelsource.getTitle(self.context, code) |
---|
[7723] | 2563 | return _('Add current level ${a}', mapping = {'a':title}) |
---|
[6806] | 2564 | |
---|
| 2565 | def update(self): |
---|
[9139] | 2566 | if not self.context.is_current: |
---|
| 2567 | emit_lock_message(self) |
---|
| 2568 | return |
---|
[8736] | 2569 | if self.context.student.state != PAID: |
---|
[7145] | 2570 | emit_lock_message(self) |
---|
[6806] | 2571 | return |
---|
[11254] | 2572 | code = self.context.current_level |
---|
| 2573 | if code is None: |
---|
| 2574 | self.flash(_('Your data are incomplete'), type="danger") |
---|
| 2575 | self.redirect(self.url(self.context)) |
---|
| 2576 | return |
---|
[6806] | 2577 | super(AddStudyLevelFormPage, self).update() |
---|
| 2578 | return |
---|
| 2579 | |
---|
[7723] | 2580 | @action(_('Create course list now'), style='primary') |
---|
[6806] | 2581 | def addStudyLevel(self, **data): |
---|
[8323] | 2582 | studylevel = createObject(u'waeup.StudentStudyLevel') |
---|
[6806] | 2583 | studylevel.level = self.context.current_level |
---|
| 2584 | studylevel.level_session = self.context.current_session |
---|
| 2585 | try: |
---|
| 2586 | self.context.addStudentStudyLevel( |
---|
| 2587 | self.context.certificate,studylevel) |
---|
| 2588 | except KeyError: |
---|
[11254] | 2589 | self.flash(_('This level exists.'), type="warning") |
---|
[9467] | 2590 | except RequiredMissing: |
---|
[11254] | 2591 | self.flash(_('Your data are incomplete'), type="danger") |
---|
[6806] | 2592 | self.redirect(self.url(self.context)) |
---|
| 2593 | return |
---|
[6808] | 2594 | |
---|
[7819] | 2595 | class StudyLevelEditFormPage(KofaEditFormPage): |
---|
[6808] | 2596 | """ Page to edit the student study level data by students |
---|
| 2597 | """ |
---|
| 2598 | grok.context(IStudentStudyLevel) |
---|
| 2599 | grok.name('edit') |
---|
[9924] | 2600 | grok.require('waeup.editStudyLevel') |
---|
[6808] | 2601 | grok.template('studyleveleditpage') |
---|
| 2602 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
| 2603 | 'level_session', 'level_verdict') |
---|
| 2604 | pnav = 4 |
---|
| 2605 | |
---|
[9895] | 2606 | def update(self, ADD=None, course=None): |
---|
[9139] | 2607 | if not self.context.__parent__.is_current: |
---|
| 2608 | emit_lock_message(self) |
---|
| 2609 | return |
---|
[9257] | 2610 | if self.context.student.state != PAID or \ |
---|
| 2611 | not self.context.is_current_level: |
---|
[7539] | 2612 | emit_lock_message(self) |
---|
| 2613 | return |
---|
[6808] | 2614 | super(StudyLevelEditFormPage, self).update() |
---|
[9895] | 2615 | if ADD is not None: |
---|
| 2616 | if not course: |
---|
[11254] | 2617 | self.flash(_('No valid course code entered.'), type="warning") |
---|
[9895] | 2618 | return |
---|
| 2619 | cat = queryUtility(ICatalog, name='courses_catalog') |
---|
| 2620 | result = cat.searchResults(code=(course, course)) |
---|
| 2621 | if len(result) != 1: |
---|
[11254] | 2622 | self.flash(_('Course not found.'), type="warning") |
---|
[9895] | 2623 | return |
---|
| 2624 | course = list(result)[0] |
---|
| 2625 | addCourseTicket(self, course) |
---|
[6808] | 2626 | return |
---|
| 2627 | |
---|
| 2628 | @property |
---|
| 2629 | def label(self): |
---|
[7833] | 2630 | # Here we know that the cookie has been set |
---|
| 2631 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 2632 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 2633 | target_language=lang) |
---|
[8920] | 2634 | return _('Edit course list of ${a}', |
---|
[7723] | 2635 | mapping = {'a':level_title}) |
---|
[6808] | 2636 | |
---|
| 2637 | @property |
---|
[8921] | 2638 | def translated_values(self): |
---|
| 2639 | return translated_values(self) |
---|
| 2640 | |
---|
[9280] | 2641 | def _delCourseTicket(self, **data): |
---|
[6808] | 2642 | form = self.request.form |
---|
[9701] | 2643 | if 'val_id' in form: |
---|
[6808] | 2644 | child_id = form['val_id'] |
---|
| 2645 | else: |
---|
[11254] | 2646 | self.flash(_('No ticket selected.'), type="warning") |
---|
[6808] | 2647 | self.redirect(self.url(self.context, '@@edit')) |
---|
| 2648 | return |
---|
| 2649 | if not isinstance(child_id, list): |
---|
| 2650 | child_id = [child_id] |
---|
| 2651 | deleted = [] |
---|
| 2652 | for id in child_id: |
---|
[6940] | 2653 | # Students are not allowed to remove core tickets |
---|
[9700] | 2654 | if id in self.context and \ |
---|
| 2655 | self.context[id].removable_by_student: |
---|
[7723] | 2656 | del self.context[id] |
---|
| 2657 | deleted.append(id) |
---|
[6808] | 2658 | if len(deleted): |
---|
[7723] | 2659 | self.flash(_('Successfully removed: ${a}', |
---|
| 2660 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 2661 | self.context.writeLogMessage( |
---|
[9924] | 2662 | self,'removed: %s at %s' % |
---|
| 2663 | (', '.join(deleted), self.context.level)) |
---|
[6808] | 2664 | self.redirect(self.url(self.context, u'@@edit')) |
---|
| 2665 | return |
---|
| 2666 | |
---|
[9280] | 2667 | @jsaction(_('Remove selected tickets')) |
---|
| 2668 | def delCourseTicket(self, **data): |
---|
| 2669 | self._delCourseTicket(**data) |
---|
| 2670 | return |
---|
| 2671 | |
---|
| 2672 | def _registerCourses(self, **data): |
---|
[10155] | 2673 | if self.context.student.is_postgrad and \ |
---|
| 2674 | not self.context.student.is_special_postgrad: |
---|
[9252] | 2675 | self.flash(_( |
---|
| 2676 | "You are a postgraduate student, " |
---|
[11254] | 2677 | "your course list can't bee registered."), type="warning") |
---|
[9252] | 2678 | self.redirect(self.url(self.context)) |
---|
| 2679 | return |
---|
[9830] | 2680 | students_utils = getUtility(IStudentsUtils) |
---|
| 2681 | max_credits = students_utils.maxCredits(self.context) |
---|
| 2682 | if self.context.total_credits > max_credits: |
---|
[8642] | 2683 | self.flash(_('Maximum credits of ${a} exceeded.', |
---|
[11254] | 2684 | mapping = {'a':max_credits}), type="warning") |
---|
[8642] | 2685 | return |
---|
[8736] | 2686 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[7642] | 2687 | 'register_courses') |
---|
[7723] | 2688 | self.flash(_('Course list has been registered.')) |
---|
[6810] | 2689 | self.redirect(self.url(self.context)) |
---|
| 2690 | return |
---|
| 2691 | |
---|
[9895] | 2692 | @action(_('Register course list')) |
---|
[9280] | 2693 | def registerCourses(self, **data): |
---|
| 2694 | self._registerCourses(**data) |
---|
| 2695 | return |
---|
| 2696 | |
---|
[6808] | 2697 | class CourseTicketAddFormPage2(CourseTicketAddFormPage): |
---|
| 2698 | """Add a course ticket by student. |
---|
| 2699 | """ |
---|
| 2700 | grok.name('ctadd') |
---|
| 2701 | grok.require('waeup.handleStudent') |
---|
[9420] | 2702 | form_fields = grok.AutoFields(ICourseTicketAdd) |
---|
[6808] | 2703 | |
---|
[7539] | 2704 | def update(self): |
---|
[9257] | 2705 | if self.context.student.state != PAID or \ |
---|
| 2706 | not self.context.is_current_level: |
---|
[7539] | 2707 | emit_lock_message(self) |
---|
| 2708 | return |
---|
| 2709 | super(CourseTicketAddFormPage2, self).update() |
---|
| 2710 | return |
---|
| 2711 | |
---|
[7723] | 2712 | @action(_('Add course ticket')) |
---|
[6808] | 2713 | def addCourseTicket(self, **data): |
---|
[7642] | 2714 | # Safety belt |
---|
[8736] | 2715 | if self.context.student.state != PAID: |
---|
[7539] | 2716 | return |
---|
[6808] | 2717 | course = data['course'] |
---|
[9895] | 2718 | success = addCourseTicket(self, course) |
---|
| 2719 | if success: |
---|
| 2720 | self.redirect(self.url(self.context, u'@@edit')) |
---|
[6808] | 2721 | return |
---|
[7369] | 2722 | |
---|
[7819] | 2723 | class SetPasswordPage(KofaPage): |
---|
| 2724 | grok.context(IKofaObject) |
---|
[7660] | 2725 | grok.name('setpassword') |
---|
| 2726 | grok.require('waeup.Anonymous') |
---|
| 2727 | grok.template('setpassword') |
---|
[7723] | 2728 | label = _('Set password for first-time login') |
---|
[7660] | 2729 | ac_prefix = 'PWD' |
---|
| 2730 | pnav = 0 |
---|
[7738] | 2731 | set_button = _('Set') |
---|
[7660] | 2732 | |
---|
| 2733 | def update(self, SUBMIT=None): |
---|
| 2734 | self.reg_number = self.request.form.get('reg_number', None) |
---|
| 2735 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2736 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 2737 | |
---|
| 2738 | if SUBMIT is None: |
---|
| 2739 | return |
---|
| 2740 | hitlist = search(query=self.reg_number, |
---|
| 2741 | searchtype='reg_number', view=self) |
---|
| 2742 | if not hitlist: |
---|
[11254] | 2743 | self.flash(_('No student found.'), type="warning") |
---|
[7660] | 2744 | return |
---|
| 2745 | if len(hitlist) != 1: # Cannot happen but anyway |
---|
[11254] | 2746 | self.flash(_('More than one student found.'), type="warning") |
---|
[7660] | 2747 | return |
---|
| 2748 | student = hitlist[0].context |
---|
| 2749 | self.student_id = student.student_id |
---|
| 2750 | student_pw = student.password |
---|
| 2751 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2752 | code = get_access_code(pin) |
---|
| 2753 | if not code: |
---|
[11254] | 2754 | self.flash(_('Access code is invalid.'), type="warning") |
---|
[7660] | 2755 | return |
---|
| 2756 | if student_pw and pin == student.adm_code: |
---|
[7723] | 2757 | self.flash(_( |
---|
| 2758 | 'Password has already been set. Your Student Id is ${a}', |
---|
| 2759 | mapping = {'a':self.student_id})) |
---|
[7660] | 2760 | return |
---|
| 2761 | elif student_pw: |
---|
| 2762 | self.flash( |
---|
[7723] | 2763 | _('Password has already been set. You are using the ' + |
---|
[11254] | 2764 | 'wrong Access Code.'), type="warning") |
---|
[7660] | 2765 | return |
---|
| 2766 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2767 | # and set student password |
---|
| 2768 | if code.state == USED: |
---|
[11254] | 2769 | self.flash(_('Access code has already been used.'), type="warning") |
---|
[7660] | 2770 | return |
---|
| 2771 | else: |
---|
[7723] | 2772 | comment = _(u"invalidated") |
---|
[7660] | 2773 | # Here we know that the ac is in state initialized so we do not |
---|
| 2774 | # expect an exception |
---|
| 2775 | invalidate_accesscode(pin,comment) |
---|
| 2776 | IUserAccount(student).setPassword(self.ac_number) |
---|
| 2777 | student.adm_code = pin |
---|
[7723] | 2778 | self.flash(_('Password has been set. Your Student Id is ${a}', |
---|
| 2779 | mapping = {'a':self.student_id})) |
---|
[7811] | 2780 | return |
---|
[8779] | 2781 | |
---|
| 2782 | class StudentRequestPasswordPage(KofaAddFormPage): |
---|
| 2783 | """Captcha'd registration page for applicants. |
---|
| 2784 | """ |
---|
| 2785 | grok.name('requestpw') |
---|
| 2786 | grok.require('waeup.Anonymous') |
---|
| 2787 | grok.template('requestpw') |
---|
| 2788 | form_fields = grok.AutoFields(IStudentRequestPW).select( |
---|
[8854] | 2789 | 'firstname','number','email') |
---|
[8779] | 2790 | label = _('Request password for first-time login') |
---|
| 2791 | |
---|
| 2792 | def update(self): |
---|
| 2793 | # Handle captcha |
---|
| 2794 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 2795 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 2796 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 2797 | return |
---|
| 2798 | |
---|
| 2799 | def _redirect(self, email, password, student_id): |
---|
| 2800 | # Forward only email to landing page in base package. |
---|
| 2801 | self.redirect(self.url(self.context, 'requestpw_complete', |
---|
| 2802 | data = dict(email=email))) |
---|
| 2803 | return |
---|
| 2804 | |
---|
| 2805 | def _pw_used(self): |
---|
[8780] | 2806 | # XXX: False if password has not been used. We need an extra |
---|
| 2807 | # attribute which remembers if student logged in. |
---|
[8779] | 2808 | return True |
---|
| 2809 | |
---|
[8854] | 2810 | @action(_('Send login credentials to email address'), style='primary') |
---|
[8779] | 2811 | def get_credentials(self, **data): |
---|
| 2812 | if not self.captcha_result.is_valid: |
---|
| 2813 | # Captcha will display error messages automatically. |
---|
| 2814 | # No need to flash something. |
---|
| 2815 | return |
---|
[8854] | 2816 | number = data.get('number','') |
---|
[8779] | 2817 | firstname = data.get('firstname','') |
---|
| 2818 | cat = getUtility(ICatalog, name='students_catalog') |
---|
| 2819 | results = list( |
---|
[8854] | 2820 | cat.searchResults(reg_number=(number, number))) |
---|
| 2821 | if not results: |
---|
| 2822 | results = list( |
---|
| 2823 | cat.searchResults(matric_number=(number, number))) |
---|
[8779] | 2824 | if results: |
---|
| 2825 | student = results[0] |
---|
| 2826 | if getattr(student,'firstname',None) is None: |
---|
[11254] | 2827 | self.flash(_('An error occurred.'), type="danger") |
---|
[8779] | 2828 | return |
---|
| 2829 | elif student.firstname.lower() != firstname.lower(): |
---|
| 2830 | # Don't tell the truth here. Anonymous must not |
---|
| 2831 | # know that a record was found and only the firstname |
---|
| 2832 | # verification failed. |
---|
[11254] | 2833 | self.flash(_('No student record found.'), type="warning") |
---|
[8779] | 2834 | return |
---|
| 2835 | elif student.password is not None and self._pw_used: |
---|
| 2836 | self.flash(_('Your password has already been set and used. ' |
---|
[11254] | 2837 | 'Please proceed to the login page.'), |
---|
| 2838 | type="warning") |
---|
[8779] | 2839 | return |
---|
| 2840 | # Store email address but nothing else. |
---|
| 2841 | student.email = data['email'] |
---|
| 2842 | notify(grok.ObjectModifiedEvent(student)) |
---|
| 2843 | else: |
---|
| 2844 | # No record found, this is the truth. |
---|
[11254] | 2845 | self.flash(_('No student record found.'), type="warning") |
---|
[8779] | 2846 | return |
---|
| 2847 | |
---|
| 2848 | kofa_utils = getUtility(IKofaUtils) |
---|
| 2849 | password = kofa_utils.genPassword() |
---|
[8857] | 2850 | mandate = PasswordMandate() |
---|
[8853] | 2851 | mandate.params['password'] = password |
---|
[8858] | 2852 | mandate.params['user'] = student |
---|
[8853] | 2853 | site = grok.getSite() |
---|
| 2854 | site['mandates'].addMandate(mandate) |
---|
[8779] | 2855 | # Send email with credentials |
---|
[8853] | 2856 | args = {'mandate_id':mandate.mandate_id} |
---|
| 2857 | mandate_url = self.url(site) + '/mandate?%s' % urlencode(args) |
---|
| 2858 | url_info = u'Confirmation link: %s' % mandate_url |
---|
[8779] | 2859 | msg = _('You have successfully requested a password for the') |
---|
| 2860 | if kofa_utils.sendCredentials(IUserAccount(student), |
---|
[8853] | 2861 | password, url_info, msg): |
---|
[8779] | 2862 | email_sent = student.email |
---|
| 2863 | else: |
---|
| 2864 | email_sent = None |
---|
| 2865 | self._redirect(email=email_sent, password=password, |
---|
| 2866 | student_id=student.student_id) |
---|
[8856] | 2867 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 2868 | self.context.logger.info( |
---|
| 2869 | '%s - %s (%s) - %s' % (ob_class, number, student.student_id, email_sent)) |
---|
[8779] | 2870 | return |
---|
| 2871 | |
---|
| 2872 | class StudentRequestPasswordEmailSent(KofaPage): |
---|
| 2873 | """Landing page after successful password request. |
---|
| 2874 | |
---|
| 2875 | """ |
---|
| 2876 | grok.name('requestpw_complete') |
---|
| 2877 | grok.require('waeup.Public') |
---|
| 2878 | grok.template('requestpwmailsent') |
---|
| 2879 | label = _('Your password request was successful.') |
---|
| 2880 | |
---|
| 2881 | def update(self, email=None, student_id=None, password=None): |
---|
| 2882 | self.email = email |
---|
| 2883 | self.password = password |
---|
| 2884 | self.student_id = student_id |
---|
[8974] | 2885 | return |
---|
[9797] | 2886 | |
---|
[9806] | 2887 | class FilterStudentsInDepartmentPage(KofaPage): |
---|
| 2888 | """Page that filters and lists students. |
---|
| 2889 | """ |
---|
| 2890 | grok.context(IDepartment) |
---|
| 2891 | grok.require('waeup.showStudents') |
---|
| 2892 | grok.name('students') |
---|
| 2893 | grok.template('filterstudentspage') |
---|
| 2894 | pnav = 1 |
---|
[9819] | 2895 | session_label = _('Current Session') |
---|
| 2896 | level_label = _('Current Level') |
---|
[9806] | 2897 | |
---|
| 2898 | def label(self): |
---|
[10650] | 2899 | return 'Students in %s' % self.context.longtitle |
---|
[9806] | 2900 | |
---|
| 2901 | def _set_session_values(self): |
---|
| 2902 | vocab_terms = academic_sessions_vocab.by_value.values() |
---|
| 2903 | self.sessions = sorted( |
---|
| 2904 | [(x.title, x.token) for x in vocab_terms], reverse=True) |
---|
| 2905 | self.sessions += [('All Sessions', 'all')] |
---|
| 2906 | return |
---|
| 2907 | |
---|
| 2908 | def _set_level_values(self): |
---|
| 2909 | vocab_terms = course_levels.by_value.values() |
---|
| 2910 | self.levels = sorted( |
---|
| 2911 | [(x.title, x.token) for x in vocab_terms]) |
---|
| 2912 | self.levels += [('All Levels', 'all')] |
---|
| 2913 | return |
---|
| 2914 | |
---|
| 2915 | def _searchCatalog(self, session, level): |
---|
| 2916 | if level not in (10, 999, None): |
---|
| 2917 | start_level = 100 * (level // 100) |
---|
| 2918 | end_level = start_level + 90 |
---|
| 2919 | else: |
---|
| 2920 | start_level = end_level = level |
---|
| 2921 | cat = queryUtility(ICatalog, name='students_catalog') |
---|
| 2922 | students = cat.searchResults( |
---|
| 2923 | current_session=(session, session), |
---|
| 2924 | current_level=(start_level, end_level), |
---|
| 2925 | depcode=(self.context.code, self.context.code) |
---|
| 2926 | ) |
---|
| 2927 | hitlist = [] |
---|
| 2928 | for student in students: |
---|
| 2929 | hitlist.append(StudentQueryResultItem(student, view=self)) |
---|
| 2930 | return hitlist |
---|
| 2931 | |
---|
| 2932 | def update(self, SHOW=None, session=None, level=None): |
---|
| 2933 | self.parent_url = self.url(self.context.__parent__) |
---|
| 2934 | self._set_session_values() |
---|
| 2935 | self._set_level_values() |
---|
| 2936 | self.hitlist = [] |
---|
| 2937 | self.session_default = session |
---|
| 2938 | self.level_default = level |
---|
| 2939 | if SHOW is not None: |
---|
| 2940 | if session != 'all': |
---|
| 2941 | self.session = int(session) |
---|
| 2942 | self.session_string = '%s %s/%s' % ( |
---|
| 2943 | self.session_label, self.session, self.session+1) |
---|
| 2944 | else: |
---|
| 2945 | self.session = None |
---|
| 2946 | self.session_string = _('in any session') |
---|
| 2947 | if level != 'all': |
---|
| 2948 | self.level = int(level) |
---|
| 2949 | self.level_string = '%s %s' % (self.level_label, self.level) |
---|
| 2950 | else: |
---|
| 2951 | self.level = None |
---|
| 2952 | self.level_string = _('at any level') |
---|
| 2953 | self.hitlist = self._searchCatalog(self.session, self.level) |
---|
| 2954 | if not self.hitlist: |
---|
[11254] | 2955 | self.flash(_('No student found.'), type="warning") |
---|
[9806] | 2956 | return |
---|
| 2957 | |
---|
| 2958 | class FilterStudentsInCertificatePage(FilterStudentsInDepartmentPage): |
---|
| 2959 | """Page that filters and lists students. |
---|
| 2960 | """ |
---|
| 2961 | grok.context(ICertificate) |
---|
| 2962 | |
---|
| 2963 | def label(self): |
---|
[10650] | 2964 | return 'Students studying %s' % self.context.longtitle |
---|
[9806] | 2965 | |
---|
| 2966 | def _searchCatalog(self, session, level): |
---|
| 2967 | if level not in (10, 999, None): |
---|
| 2968 | start_level = 100 * (level // 100) |
---|
| 2969 | end_level = start_level + 90 |
---|
| 2970 | else: |
---|
| 2971 | start_level = end_level = level |
---|
| 2972 | cat = queryUtility(ICatalog, name='students_catalog') |
---|
| 2973 | students = cat.searchResults( |
---|
| 2974 | current_session=(session, session), |
---|
| 2975 | current_level=(start_level, end_level), |
---|
| 2976 | certcode=(self.context.code, self.context.code) |
---|
| 2977 | ) |
---|
| 2978 | hitlist = [] |
---|
| 2979 | for student in students: |
---|
| 2980 | hitlist.append(StudentQueryResultItem(student, view=self)) |
---|
| 2981 | return hitlist |
---|
| 2982 | |
---|
| 2983 | class FilterStudentsInCoursePage(FilterStudentsInDepartmentPage): |
---|
| 2984 | """Page that filters and lists students. |
---|
| 2985 | """ |
---|
| 2986 | grok.context(ICourse) |
---|
| 2987 | |
---|
[10024] | 2988 | session_label = _('Session') |
---|
| 2989 | level_label = _('Level') |
---|
| 2990 | |
---|
[9806] | 2991 | def label(self): |
---|
[10650] | 2992 | return 'Students registered for %s' % self.context.longtitle |
---|
[9806] | 2993 | |
---|
| 2994 | def _searchCatalog(self, session, level): |
---|
| 2995 | if level not in (10, 999, None): |
---|
| 2996 | start_level = 100 * (level // 100) |
---|
| 2997 | end_level = start_level + 90 |
---|
| 2998 | else: |
---|
| 2999 | start_level = end_level = level |
---|
| 3000 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
| 3001 | coursetickets = cat.searchResults( |
---|
| 3002 | session=(session, session), |
---|
| 3003 | level=(start_level, end_level), |
---|
| 3004 | code=(self.context.code, self.context.code) |
---|
| 3005 | ) |
---|
| 3006 | hitlist = [] |
---|
| 3007 | for ticket in coursetickets: |
---|
| 3008 | hitlist.append(StudentQueryResultItem(ticket.student, view=self)) |
---|
[10039] | 3009 | return list(set(hitlist)) |
---|
[9806] | 3010 | |
---|
[10627] | 3011 | class EditScoresPage(KofaPage): |
---|
| 3012 | """Page that filters and lists students. |
---|
| 3013 | """ |
---|
| 3014 | grok.context(ICourse) |
---|
[10632] | 3015 | grok.require('waeup.editScores') |
---|
[10627] | 3016 | grok.name('edit_scores') |
---|
| 3017 | grok.template('editscorespage') |
---|
| 3018 | pnav = 1 |
---|
| 3019 | |
---|
| 3020 | def label(self): |
---|
| 3021 | session = academic_sessions_vocab.getTerm( |
---|
| 3022 | self.current_academic_session).title |
---|
[10631] | 3023 | return '%s tickets in academic session %s' % ( |
---|
| 3024 | self.context.code, session) |
---|
[10627] | 3025 | |
---|
| 3026 | def _searchCatalog(self, session): |
---|
| 3027 | cat = queryUtility(ICatalog, name='coursetickets_catalog') |
---|
| 3028 | coursetickets = cat.searchResults( |
---|
| 3029 | session=(session, session), |
---|
| 3030 | code=(self.context.code, self.context.code) |
---|
| 3031 | ) |
---|
| 3032 | return list(coursetickets) |
---|
| 3033 | |
---|
| 3034 | def update(self, *args, **kw): |
---|
| 3035 | form = self.request.form |
---|
| 3036 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 3037 | self.current_academic_session = grok.getSite()[ |
---|
| 3038 | 'configuration'].current_academic_session |
---|
[10634] | 3039 | if self.context.__parent__.__parent__.score_editing_disabled: |
---|
[11254] | 3040 | self.flash(_('Score editing disabled.'), type="warning") |
---|
[10634] | 3041 | self.redirect(self.url(self.context)) |
---|
| 3042 | return |
---|
[10632] | 3043 | if not self.current_academic_session: |
---|
[11254] | 3044 | self.flash(_('Current academic session not set.'), type="warning") |
---|
[10632] | 3045 | self.redirect(self.url(self.context)) |
---|
| 3046 | return |
---|
[10627] | 3047 | self.tickets = self._searchCatalog(self.current_academic_session) |
---|
[10631] | 3048 | editable_tickets = [ |
---|
| 3049 | ticket for ticket in self.tickets if ticket.editable_by_lecturer] |
---|
[10627] | 3050 | if not self.tickets: |
---|
[11254] | 3051 | self.flash(_('No student found.'), type="warning") |
---|
[10632] | 3052 | self.redirect(self.url(self.context)) |
---|
[10627] | 3053 | return |
---|
| 3054 | if 'UPDATE' in form: |
---|
| 3055 | tno = 0 |
---|
| 3056 | error = '' |
---|
[10631] | 3057 | if not editable_tickets: |
---|
| 3058 | return |
---|
| 3059 | scores = form['scores'] |
---|
| 3060 | if isinstance(scores, basestring): |
---|
| 3061 | scores = [scores] |
---|
| 3062 | for ticket in editable_tickets: |
---|
[10627] | 3063 | score = ticket.score |
---|
[10637] | 3064 | if scores[tno] == '': |
---|
| 3065 | score = None |
---|
| 3066 | else: |
---|
| 3067 | try: |
---|
| 3068 | score = int(scores[tno]) |
---|
| 3069 | except ValueError: |
---|
| 3070 | error += '%s, ' % ticket.student.display_fullname |
---|
[10627] | 3071 | if ticket.score != score: |
---|
| 3072 | ticket.score = score |
---|
| 3073 | ticket.student.__parent__.logger.info( |
---|
| 3074 | '%s - %s %s/%s score updated (%s)' % |
---|
| 3075 | (ob_class, ticket.student.student_id, |
---|
| 3076 | ticket.level, ticket.code, score)) |
---|
| 3077 | #notify(grok.ObjectModifiedEvent(ticket)) |
---|
| 3078 | tno += 1 |
---|
| 3079 | if error: |
---|
| 3080 | self.flash(_('Error: Score(s) of %s have not be updated. ' |
---|
[11254] | 3081 | 'Only integers are allowed.' % error.strip(', ')), |
---|
| 3082 | type="danger") |
---|
[10627] | 3083 | return |
---|
| 3084 | |
---|
[9813] | 3085 | class ExportJobContainerOverview(KofaPage): |
---|
[9835] | 3086 | """Page that lists active student data export jobs and provides links |
---|
| 3087 | to discard or download CSV files. |
---|
| 3088 | |
---|
[9797] | 3089 | """ |
---|
[9813] | 3090 | grok.context(VirtualExportJobContainer) |
---|
[9797] | 3091 | grok.require('waeup.showStudents') |
---|
| 3092 | grok.name('index.html') |
---|
| 3093 | grok.template('exportjobsindex') |
---|
[9813] | 3094 | label = _('Student Data Exports') |
---|
[9797] | 3095 | pnav = 1 |
---|
| 3096 | |
---|
| 3097 | def update(self, CREATE=None, DISCARD=None, job_id=None): |
---|
| 3098 | if CREATE: |
---|
[9836] | 3099 | self.redirect(self.url('@@exportconfig')) |
---|
[9797] | 3100 | return |
---|
| 3101 | if DISCARD and job_id: |
---|
| 3102 | entry = self.context.entry_from_job_id(job_id) |
---|
| 3103 | self.context.delete_export_entry(entry) |
---|
[9836] | 3104 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 3105 | self.context.logger.info( |
---|
| 3106 | '%s - discarded: job_id=%s' % (ob_class, job_id)) |
---|
[9819] | 3107 | self.flash(_('Discarded export') + ' %s' % job_id) |
---|
[9822] | 3108 | self.entries = doll_up(self, user=self.request.principal.id) |
---|
[9797] | 3109 | return |
---|
| 3110 | |
---|
[9833] | 3111 | class ExportJobContainerJobConfig(KofaPage): |
---|
[9797] | 3112 | """Page that configures a students export job. |
---|
[9833] | 3113 | |
---|
| 3114 | This is a baseclass. |
---|
[9797] | 3115 | """ |
---|
[9833] | 3116 | grok.baseclass() |
---|
[9836] | 3117 | grok.name('exportconfig') |
---|
[9797] | 3118 | grok.require('waeup.showStudents') |
---|
[9836] | 3119 | grok.template('exportconfig') |
---|
[9833] | 3120 | label = _('Configure student data export') |
---|
[9797] | 3121 | pnav = 1 |
---|
[9835] | 3122 | redirect_target = '' |
---|
[9797] | 3123 | |
---|
| 3124 | def _set_session_values(self): |
---|
| 3125 | vocab_terms = academic_sessions_vocab.by_value.values() |
---|
| 3126 | self.sessions = sorted( |
---|
| 3127 | [(x.title, x.token) for x in vocab_terms], reverse=True) |
---|
[9819] | 3128 | self.sessions += [(_('All Sessions'), 'all')] |
---|
[9797] | 3129 | return |
---|
| 3130 | |
---|
| 3131 | def _set_level_values(self): |
---|
| 3132 | vocab_terms = course_levels.by_value.values() |
---|
| 3133 | self.levels = sorted( |
---|
| 3134 | [(x.title, x.token) for x in vocab_terms]) |
---|
[9819] | 3135 | self.levels += [(_('All Levels'), 'all')] |
---|
[9797] | 3136 | return |
---|
| 3137 | |
---|
[9803] | 3138 | def _set_mode_values(self): |
---|
| 3139 | utils = getUtility(IKofaUtils) |
---|
[9838] | 3140 | self.modes = sorted([(value, key) for key, value in |
---|
| 3141 | utils.STUDY_MODES_DICT.items()]) |
---|
[9819] | 3142 | self.modes +=[(_('All Modes'), 'all')] |
---|
[9803] | 3143 | return |
---|
| 3144 | |
---|
[9804] | 3145 | def _set_exporter_values(self): |
---|
| 3146 | # We provide all student exporters, nothing else, yet. |
---|
[10279] | 3147 | # Bursary or Department Officers don't have the general exportData |
---|
| 3148 | # permission and are only allowed to export bursary or payments |
---|
| 3149 | # overview data respectively. This is the only place where |
---|
| 3150 | # waeup.exportBursaryData and waeup.exportPaymentsOverview |
---|
| 3151 | # are used. |
---|
| 3152 | exporters = [] |
---|
[10248] | 3153 | if not checkPermission('waeup.exportData', self.context): |
---|
[10279] | 3154 | if checkPermission('waeup.exportBursaryData', self.context): |
---|
| 3155 | exporters += [('Bursary Data', 'bursary')] |
---|
| 3156 | if checkPermission('waeup.exportPaymentsOverview', self.context): |
---|
| 3157 | exporters += [('Student Payments Overview', 'paymentsoverview')] |
---|
| 3158 | self.exporters = exporters |
---|
[10248] | 3159 | return |
---|
[9804] | 3160 | for name in EXPORTER_NAMES: |
---|
| 3161 | util = getUtility(ICSVExporter, name=name) |
---|
| 3162 | exporters.append((util.title, name),) |
---|
| 3163 | self.exporters = exporters |
---|
[10247] | 3164 | return |
---|
[9804] | 3165 | |
---|
[9833] | 3166 | @property |
---|
| 3167 | def depcode(self): |
---|
| 3168 | return None |
---|
| 3169 | |
---|
[9842] | 3170 | @property |
---|
| 3171 | def certcode(self): |
---|
| 3172 | return None |
---|
| 3173 | |
---|
[9804] | 3174 | def update(self, START=None, session=None, level=None, mode=None, |
---|
| 3175 | exporter=None): |
---|
[9797] | 3176 | self._set_session_values() |
---|
| 3177 | self._set_level_values() |
---|
[9803] | 3178 | self._set_mode_values() |
---|
[9804] | 3179 | self._set_exporter_values() |
---|
[9797] | 3180 | if START is None: |
---|
| 3181 | return |
---|
| 3182 | if session == 'all': |
---|
| 3183 | session=None |
---|
| 3184 | if level == 'all': |
---|
| 3185 | level = None |
---|
[9803] | 3186 | if mode == 'all': |
---|
| 3187 | mode = None |
---|
[9933] | 3188 | if (mode, level, session, |
---|
| 3189 | self.depcode, self.certcode) == (None, None, None, None, None): |
---|
| 3190 | # Export all students including those without certificate |
---|
| 3191 | job_id = self.context.start_export_job(exporter, |
---|
| 3192 | self.request.principal.id) |
---|
| 3193 | else: |
---|
| 3194 | job_id = self.context.start_export_job(exporter, |
---|
| 3195 | self.request.principal.id, |
---|
| 3196 | current_session=session, |
---|
| 3197 | current_level=level, |
---|
| 3198 | current_mode=mode, |
---|
| 3199 | depcode=self.depcode, |
---|
| 3200 | certcode=self.certcode) |
---|
[9836] | 3201 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 3202 | self.context.logger.info( |
---|
[9842] | 3203 | '%s - exported: %s (%s, %s, %s, %s, %s), job_id=%s' |
---|
| 3204 | % (ob_class, exporter, session, level, mode, self.depcode, |
---|
| 3205 | self.certcode, job_id)) |
---|
[9833] | 3206 | self.flash(_('Export started for students with') + |
---|
| 3207 | ' current_session=%s, current_level=%s, study_mode=%s' % ( |
---|
| 3208 | session, level, mode)) |
---|
[9835] | 3209 | self.redirect(self.url(self.redirect_target)) |
---|
[9797] | 3210 | return |
---|
| 3211 | |
---|
[9822] | 3212 | class ExportJobContainerDownload(ExportCSVView): |
---|
[9835] | 3213 | """Page that downloads a students export csv file. |
---|
| 3214 | |
---|
[9797] | 3215 | """ |
---|
[9813] | 3216 | grok.context(VirtualExportJobContainer) |
---|
[9797] | 3217 | grok.require('waeup.showStudents') |
---|
[9833] | 3218 | |
---|
| 3219 | class DatacenterExportJobContainerJobConfig(ExportJobContainerJobConfig): |
---|
| 3220 | """Page that configures a students export job in datacenter. |
---|
| 3221 | |
---|
| 3222 | """ |
---|
| 3223 | grok.context(IDataCenter) |
---|
[9835] | 3224 | redirect_target = '@@export' |
---|
[9833] | 3225 | |
---|
[10247] | 3226 | class FacultiesExportJobContainerJobConfig(ExportJobContainerJobConfig): |
---|
| 3227 | """Page that configures a students export job in facultiescontainer. |
---|
| 3228 | |
---|
| 3229 | """ |
---|
| 3230 | grok.context(VirtualFacultiesExportJobContainer) |
---|
| 3231 | |
---|
[9833] | 3232 | class DepartmentExportJobContainerJobConfig(ExportJobContainerJobConfig): |
---|
| 3233 | """Page that configures a students export job in departments. |
---|
| 3234 | |
---|
| 3235 | """ |
---|
| 3236 | grok.context(VirtualDepartmentExportJobContainer) |
---|
| 3237 | |
---|
| 3238 | @property |
---|
| 3239 | def depcode(self): |
---|
[9835] | 3240 | return self.context.__parent__.code |
---|
[9842] | 3241 | |
---|
| 3242 | class CertificateExportJobContainerJobConfig(ExportJobContainerJobConfig): |
---|
| 3243 | """Page that configures a students export job for certificates. |
---|
| 3244 | |
---|
| 3245 | """ |
---|
| 3246 | grok.context(VirtualCertificateExportJobContainer) |
---|
[9843] | 3247 | grok.template('exportconfig_certificate') |
---|
[9842] | 3248 | |
---|
| 3249 | @property |
---|
| 3250 | def certcode(self): |
---|
| 3251 | return self.context.__parent__.code |
---|
[9843] | 3252 | |
---|
| 3253 | class CourseExportJobContainerJobConfig(ExportJobContainerJobConfig): |
---|
| 3254 | """Page that configures a students export job for courses. |
---|
| 3255 | |
---|
| 3256 | In contrast to department or certificate student data exports the |
---|
| 3257 | coursetickets_catalog is searched here. Therefore the update |
---|
| 3258 | method from the base class is customized. |
---|
| 3259 | """ |
---|
| 3260 | grok.context(VirtualCourseExportJobContainer) |
---|
| 3261 | grok.template('exportconfig_course') |
---|
| 3262 | |
---|
| 3263 | def _set_exporter_values(self): |
---|
[9844] | 3264 | # We provide only two exporters. |
---|
[9843] | 3265 | exporters = [] |
---|
[9844] | 3266 | for name in ('students', 'coursetickets'): |
---|
[9843] | 3267 | util = getUtility(ICSVExporter, name=name) |
---|
| 3268 | exporters.append((util.title, name),) |
---|
| 3269 | self.exporters = exporters |
---|
| 3270 | |
---|
| 3271 | def update(self, START=None, session=None, level=None, mode=None, |
---|
| 3272 | exporter=None): |
---|
| 3273 | self._set_session_values() |
---|
| 3274 | self._set_level_values() |
---|
| 3275 | self._set_mode_values() |
---|
| 3276 | self._set_exporter_values() |
---|
| 3277 | if START is None: |
---|
| 3278 | return |
---|
| 3279 | if session == 'all': |
---|
[10016] | 3280 | session = None |
---|
[9843] | 3281 | if level == 'all': |
---|
| 3282 | level = None |
---|
| 3283 | job_id = self.context.start_export_job(exporter, |
---|
| 3284 | self.request.principal.id, |
---|
| 3285 | # Use a different catalog and |
---|
| 3286 | # pass different keywords than |
---|
| 3287 | # for the (default) students_catalog |
---|
[9845] | 3288 | catalog='coursetickets', |
---|
[9843] | 3289 | session=session, |
---|
| 3290 | level=level, |
---|
| 3291 | code=self.context.__parent__.code) |
---|
| 3292 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 3293 | self.context.logger.info( |
---|
| 3294 | '%s - exported: %s (%s, %s, %s), job_id=%s' |
---|
| 3295 | % (ob_class, exporter, session, level, |
---|
| 3296 | self.context.__parent__.code, job_id)) |
---|
| 3297 | self.flash(_('Export started for course tickets with') + |
---|
| 3298 | ' level_session=%s, level=%s' % ( |
---|
| 3299 | session, level)) |
---|
| 3300 | self.redirect(self.url(self.redirect_target)) |
---|
| 3301 | return |
---|