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