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