[7191] | 1 | ## $Id: browser.py 9423 2012-10-26 07:55:45Z 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 |
---|
[7275] | 22 | from urllib import urlencode |
---|
[7256] | 23 | from datetime import datetime |
---|
[8143] | 24 | from copy import deepcopy |
---|
[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 |
---|
[8099] | 29 | from zope.schema.interfaces import ConstraintNotSatisfied |
---|
[7386] | 30 | from zope.formlib.textwidgets import BytesDisplayWidget |
---|
[6621] | 31 | from hurry.workflow.interfaces import IWorkflowInfo, IWorkflowState |
---|
[7811] | 32 | from waeup.kofa.accesscodes import ( |
---|
[8420] | 33 | invalidate_accesscode, get_access_code) |
---|
[7811] | 34 | from waeup.kofa.accesscodes.workflow import USED |
---|
[9217] | 35 | from waeup.kofa.browser.layout import ( |
---|
[7819] | 36 | KofaPage, KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage, |
---|
[9217] | 37 | KofaForm, NullValidator) |
---|
| 38 | from waeup.kofa.browser.pages import ContactAdminForm |
---|
[7811] | 39 | from waeup.kofa.browser.breadcrumbs import Breadcrumb |
---|
| 40 | from waeup.kofa.browser.resources import datepicker, datatable, tabs, warning |
---|
| 41 | from waeup.kofa.browser.layout import jsaction, action, UtilityView |
---|
[8779] | 42 | from waeup.kofa.browser.interfaces import ICaptchaManager |
---|
[7811] | 43 | from waeup.kofa.interfaces import ( |
---|
[7819] | 44 | IKofaObject, IUserAccount, IExtFileStore, IPasswordValidator, IContactForm, |
---|
[9124] | 45 | IKofaUtils, IUniversity, IObjectHistory) |
---|
[7811] | 46 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
[8170] | 47 | from waeup.kofa.widgets.datewidget import ( |
---|
| 48 | FriendlyDateWidget, FriendlyDateDisplayWidget, |
---|
| 49 | FriendlyDatetimeDisplayWidget) |
---|
[7868] | 50 | from waeup.kofa.widgets.restwidget import ReSTDisplayWidget |
---|
[7811] | 51 | from waeup.kofa.students.interfaces import ( |
---|
[7993] | 52 | IStudentsContainer, IStudent, |
---|
| 53 | IUGStudentClearance,IPGStudentClearance, |
---|
[6859] | 54 | IStudentPersonal, IStudentBase, IStudentStudyCourse, |
---|
[9138] | 55 | IStudentStudyCourseTransfer, |
---|
[7538] | 56 | IStudentAccommodation, IStudentStudyLevel, |
---|
[6877] | 57 | ICourseTicket, ICourseTicketAdd, IStudentPaymentsContainer, |
---|
[9148] | 58 | IStudentOnlinePayment, IStudentPreviousPayment, |
---|
| 59 | IBedTicket, IStudentsUtils, IStudentRequestPW |
---|
[6621] | 60 | ) |
---|
[7811] | 61 | from waeup.kofa.students.catalog import search |
---|
[8779] | 62 | from waeup.kofa.students.workflow import (CREATED, ADMITTED, PAID, |
---|
[9028] | 63 | CLEARANCE, REQUESTED, RETURNING, CLEARED, REGISTERED, VALIDATED, |
---|
| 64 | FORBIDDEN_POSTGRAD_TRANS) |
---|
[7811] | 65 | from waeup.kofa.students.studylevel import StudentStudyLevel, CourseTicket |
---|
| 66 | from waeup.kofa.students.vocabularies import StudyLevelSource |
---|
| 67 | from waeup.kofa.browser.resources import toggleall |
---|
| 68 | from waeup.kofa.hostels.hostel import NOT_OCCUPIED |
---|
[8737] | 69 | from waeup.kofa.utils.helpers import get_current_principal, to_timezone |
---|
[8857] | 70 | from waeup.kofa.mandates.mandate import PasswordMandate |
---|
[6621] | 71 | |
---|
[8779] | 72 | grok.context(IKofaObject) # Make IKofaObject the default context |
---|
| 73 | |
---|
[8737] | 74 | # Save function used for save methods in pages |
---|
| 75 | def msave(view, **data): |
---|
| 76 | changed_fields = view.applyData(view.context, **data) |
---|
| 77 | # Turn list of lists into single list |
---|
| 78 | if changed_fields: |
---|
| 79 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
| 80 | # Inform catalog if certificate has changed |
---|
| 81 | # (applyData does this only for the context) |
---|
| 82 | if 'certificate' in changed_fields: |
---|
| 83 | notify(grok.ObjectModifiedEvent(view.context.student)) |
---|
| 84 | fields_string = ' + '.join(changed_fields) |
---|
| 85 | view.flash(_('Form has been saved.')) |
---|
| 86 | if fields_string: |
---|
| 87 | view.context.writeLogMessage(view, 'saved: %s' % fields_string) |
---|
| 88 | return |
---|
| 89 | |
---|
[7145] | 90 | def emit_lock_message(view): |
---|
[7642] | 91 | """Flash a lock message. |
---|
| 92 | """ |
---|
[7723] | 93 | view.flash(_('The requested form is locked (read-only).')) |
---|
[7133] | 94 | view.redirect(view.url(view.context)) |
---|
| 95 | return |
---|
| 96 | |
---|
[8921] | 97 | def translated_values(view): |
---|
| 98 | lang = view.request.cookies.get('kofa.language') |
---|
| 99 | for value in view.context.values(): |
---|
[9328] | 100 | # We have to unghostify (according to Tres Seaver) the __dict__ |
---|
| 101 | # by activating the object, otherwise value_dict will be empty |
---|
| 102 | # when calling the first time. |
---|
[9330] | 103 | value._p_activate() |
---|
[8921] | 104 | value_dict = dict([i for i in value.__dict__.items()]) |
---|
| 105 | value_dict['mandatory_bool'] = value.mandatory |
---|
| 106 | value_dict['mandatory'] = translate(str(value.mandatory), 'zope', |
---|
| 107 | target_language=lang) |
---|
| 108 | value_dict['carry_over'] = translate(str(value.carry_over), 'zope', |
---|
| 109 | target_language=lang) |
---|
| 110 | value_dict['automatic'] = translate(str(value.automatic), 'zope', |
---|
| 111 | target_language=lang) |
---|
| 112 | yield value_dict |
---|
| 113 | |
---|
[6629] | 114 | class StudentsBreadcrumb(Breadcrumb): |
---|
| 115 | """A breadcrumb for the students container. |
---|
| 116 | """ |
---|
| 117 | grok.context(IStudentsContainer) |
---|
[7723] | 118 | title = _('Students') |
---|
[6629] | 119 | |
---|
[7459] | 120 | @property |
---|
| 121 | def target(self): |
---|
| 122 | user = get_current_principal() |
---|
| 123 | if getattr(user, 'user_type', None) == 'student': |
---|
| 124 | return None |
---|
| 125 | return self.viewname |
---|
| 126 | |
---|
[6818] | 127 | class StudentBreadcrumb(Breadcrumb): |
---|
| 128 | """A breadcrumb for the student container. |
---|
| 129 | """ |
---|
| 130 | grok.context(IStudent) |
---|
| 131 | |
---|
| 132 | def title(self): |
---|
[7364] | 133 | return self.context.display_fullname |
---|
[6818] | 134 | |
---|
[6635] | 135 | class SudyCourseBreadcrumb(Breadcrumb): |
---|
| 136 | """A breadcrumb for the student study course. |
---|
| 137 | """ |
---|
| 138 | grok.context(IStudentStudyCourse) |
---|
| 139 | |
---|
[9140] | 140 | def title(self): |
---|
| 141 | if self.context.is_current: |
---|
| 142 | return _('Study Course') |
---|
| 143 | else: |
---|
| 144 | return _('Previous Study Course') |
---|
| 145 | |
---|
[6635] | 146 | class PaymentsBreadcrumb(Breadcrumb): |
---|
| 147 | """A breadcrumb for the student payments folder. |
---|
| 148 | """ |
---|
[6859] | 149 | grok.context(IStudentPaymentsContainer) |
---|
[7723] | 150 | title = _('Payments') |
---|
[6635] | 151 | |
---|
[6870] | 152 | class OnlinePaymentBreadcrumb(Breadcrumb): |
---|
[7251] | 153 | """A breadcrumb for payments. |
---|
[6870] | 154 | """ |
---|
[6877] | 155 | grok.context(IStudentOnlinePayment) |
---|
[6870] | 156 | |
---|
| 157 | @property |
---|
| 158 | def title(self): |
---|
| 159 | return self.context.p_id |
---|
| 160 | |
---|
[6635] | 161 | class AccommodationBreadcrumb(Breadcrumb): |
---|
| 162 | """A breadcrumb for the student accommodation folder. |
---|
| 163 | """ |
---|
| 164 | grok.context(IStudentAccommodation) |
---|
[7723] | 165 | title = _('Accommodation') |
---|
[6635] | 166 | |
---|
[6994] | 167 | class BedTicketBreadcrumb(Breadcrumb): |
---|
| 168 | """A breadcrumb for bed tickets. |
---|
| 169 | """ |
---|
| 170 | grok.context(IBedTicket) |
---|
[7009] | 171 | |
---|
[6994] | 172 | @property |
---|
| 173 | def title(self): |
---|
[7723] | 174 | return _('Bed Ticket ${a}', |
---|
| 175 | mapping = {'a':self.context.getSessionString()}) |
---|
[6994] | 176 | |
---|
[6776] | 177 | class StudyLevelBreadcrumb(Breadcrumb): |
---|
| 178 | """A breadcrumb for course lists. |
---|
| 179 | """ |
---|
| 180 | grok.context(IStudentStudyLevel) |
---|
| 181 | |
---|
| 182 | @property |
---|
| 183 | def title(self): |
---|
[7834] | 184 | return self.context.level_title |
---|
[6776] | 185 | |
---|
[7819] | 186 | class StudentsContainerPage(KofaPage): |
---|
[6626] | 187 | """The standard view for student containers. |
---|
[6621] | 188 | """ |
---|
| 189 | grok.context(IStudentsContainer) |
---|
| 190 | grok.name('index') |
---|
[7240] | 191 | grok.require('waeup.viewStudentsContainer') |
---|
[6695] | 192 | grok.template('containerpage') |
---|
[7723] | 193 | label = _('Student Section') |
---|
[7735] | 194 | search_button = _('Search') |
---|
[6642] | 195 | pnav = 4 |
---|
[6621] | 196 | |
---|
[6626] | 197 | def update(self, *args, **kw): |
---|
| 198 | datatable.need() |
---|
| 199 | form = self.request.form |
---|
| 200 | self.hitlist = [] |
---|
| 201 | if 'searchterm' in form and form['searchterm']: |
---|
| 202 | self.searchterm = form['searchterm'] |
---|
| 203 | self.searchtype = form['searchtype'] |
---|
| 204 | elif 'old_searchterm' in form: |
---|
| 205 | self.searchterm = form['old_searchterm'] |
---|
| 206 | self.searchtype = form['old_searchtype'] |
---|
| 207 | else: |
---|
| 208 | if 'search' in form: |
---|
[7745] | 209 | self.flash(_('Empty search string')) |
---|
[6626] | 210 | return |
---|
[7068] | 211 | if self.searchtype == 'current_session': |
---|
[8081] | 212 | try: |
---|
| 213 | self.searchterm = int(self.searchterm) |
---|
| 214 | except ValueError: |
---|
[8404] | 215 | self.flash(_('Only year dates allowed (e.g. 2011).')) |
---|
[8081] | 216 | return |
---|
[6626] | 217 | self.hitlist = search(query=self.searchterm, |
---|
| 218 | searchtype=self.searchtype, view=self) |
---|
| 219 | if not self.hitlist: |
---|
[8404] | 220 | self.flash(_('No student found.')) |
---|
[6626] | 221 | return |
---|
| 222 | |
---|
[7819] | 223 | class StudentsContainerManagePage(KofaPage): |
---|
[6626] | 224 | """The manage page for student containers. |
---|
[6622] | 225 | """ |
---|
| 226 | grok.context(IStudentsContainer) |
---|
| 227 | grok.name('manage') |
---|
[7136] | 228 | grok.require('waeup.manageStudent') |
---|
[6695] | 229 | grok.template('containermanagepage') |
---|
[6642] | 230 | pnav = 4 |
---|
[7723] | 231 | label = _('Manage student section') |
---|
[7735] | 232 | search_button = _('Search') |
---|
| 233 | remove_button = _('Remove selected') |
---|
[6622] | 234 | |
---|
[6626] | 235 | def update(self, *args, **kw): |
---|
| 236 | datatable.need() |
---|
[6820] | 237 | toggleall.need() |
---|
[7329] | 238 | warning.need() |
---|
[6626] | 239 | form = self.request.form |
---|
| 240 | self.hitlist = [] |
---|
| 241 | if 'searchterm' in form and form['searchterm']: |
---|
| 242 | self.searchterm = form['searchterm'] |
---|
| 243 | self.searchtype = form['searchtype'] |
---|
| 244 | elif 'old_searchterm' in form: |
---|
| 245 | self.searchterm = form['old_searchterm'] |
---|
| 246 | self.searchtype = form['old_searchtype'] |
---|
| 247 | else: |
---|
| 248 | if 'search' in form: |
---|
[7745] | 249 | self.flash(_('Empty search string')) |
---|
[6626] | 250 | return |
---|
[8082] | 251 | if self.searchtype == 'current_session': |
---|
| 252 | try: |
---|
| 253 | self.searchterm = int(self.searchterm) |
---|
| 254 | except ValueError: |
---|
| 255 | self.flash('Only year dates allowed (e.g. 2011).') |
---|
| 256 | return |
---|
[6626] | 257 | if not 'entries' in form: |
---|
| 258 | self.hitlist = search(query=self.searchterm, |
---|
| 259 | searchtype=self.searchtype, view=self) |
---|
| 260 | if not self.hitlist: |
---|
[7723] | 261 | self.flash(_('No student found.')) |
---|
[7459] | 262 | if 'remove' in form: |
---|
[7723] | 263 | self.flash(_('No item selected.')) |
---|
[6626] | 264 | return |
---|
| 265 | entries = form['entries'] |
---|
| 266 | if isinstance(entries, basestring): |
---|
| 267 | entries = [entries] |
---|
| 268 | deleted = [] |
---|
| 269 | for entry in entries: |
---|
| 270 | if 'remove' in form: |
---|
| 271 | del self.context[entry] |
---|
| 272 | deleted.append(entry) |
---|
| 273 | self.hitlist = search(query=self.searchterm, |
---|
| 274 | searchtype=self.searchtype, view=self) |
---|
| 275 | if len(deleted): |
---|
[7723] | 276 | self.flash(_('Successfully removed: ${a}', |
---|
| 277 | mapping = {'a':', '.join(deleted)})) |
---|
[6622] | 278 | return |
---|
| 279 | |
---|
[7819] | 280 | class StudentAddFormPage(KofaAddFormPage): |
---|
[6622] | 281 | """Add-form to add a student. |
---|
| 282 | """ |
---|
| 283 | grok.context(IStudentsContainer) |
---|
[7136] | 284 | grok.require('waeup.manageStudent') |
---|
[6622] | 285 | grok.name('addstudent') |
---|
[7357] | 286 | form_fields = grok.AutoFields(IStudent).select( |
---|
[7520] | 287 | 'firstname', 'middlename', 'lastname', 'reg_number') |
---|
[7723] | 288 | label = _('Add student') |
---|
[6642] | 289 | pnav = 4 |
---|
[6622] | 290 | |
---|
[7723] | 291 | @action(_('Create student record'), style='primary') |
---|
[6622] | 292 | def addStudent(self, **data): |
---|
| 293 | student = createObject(u'waeup.Student') |
---|
| 294 | self.applyData(student, **data) |
---|
[6652] | 295 | self.context.addStudent(student) |
---|
[7723] | 296 | self.flash(_('Student record created.')) |
---|
[6651] | 297 | self.redirect(self.url(self.context[student.student_id], 'index')) |
---|
[6622] | 298 | return |
---|
| 299 | |
---|
[9338] | 300 | class LoginAsStudentStep1(KofaEditFormPage): |
---|
| 301 | """ View to temporarily set a student password. |
---|
| 302 | """ |
---|
| 303 | grok.context(IStudent) |
---|
| 304 | grok.name('loginasstep1') |
---|
| 305 | grok.require('waeup.loginAsStudent') |
---|
| 306 | grok.template('loginasstep1') |
---|
| 307 | pnav = 4 |
---|
| 308 | |
---|
| 309 | def label(self): |
---|
| 310 | return _(u'Set temporary password for ${a}', |
---|
| 311 | mapping = {'a':self.context.display_fullname}) |
---|
| 312 | |
---|
| 313 | @action('Set password now', style='primary') |
---|
| 314 | def setPassword(self, *args, **data): |
---|
| 315 | kofa_utils = getUtility(IKofaUtils) |
---|
| 316 | password = kofa_utils.genPassword() |
---|
| 317 | self.context.setTempPassword(self.request.principal.id, password) |
---|
| 318 | self.context.writeLogMessage( |
---|
| 319 | self, 'temp_password generated: %s' % password) |
---|
| 320 | args = {'password':password} |
---|
| 321 | self.redirect(self.url(self.context) + |
---|
| 322 | '/loginasstep2?%s' % urlencode(args)) |
---|
| 323 | return |
---|
| 324 | |
---|
| 325 | class LoginAsStudentStep2(KofaPage): |
---|
| 326 | """ View to temporarily login as student with a temporary password. |
---|
| 327 | """ |
---|
| 328 | grok.context(IStudent) |
---|
| 329 | grok.name('loginasstep2') |
---|
| 330 | grok.require('waeup.Public') |
---|
| 331 | grok.template('loginasstep2') |
---|
| 332 | login_button = _('Login now') |
---|
| 333 | pnav = 4 |
---|
| 334 | |
---|
| 335 | def label(self): |
---|
| 336 | return _(u'Login as ${a}', |
---|
| 337 | mapping = {'a':self.context.student_id}) |
---|
| 338 | |
---|
| 339 | def update(self, SUBMIT=None, password=None): |
---|
| 340 | self.password = password |
---|
| 341 | if SUBMIT is not None: |
---|
| 342 | self.flash(_('You successfully logged in as student.')) |
---|
| 343 | self.redirect(self.url(self.context)) |
---|
| 344 | return |
---|
| 345 | |
---|
[7819] | 346 | class StudentBaseDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 347 | """ Page to display student base data |
---|
| 348 | """ |
---|
[6622] | 349 | grok.context(IStudent) |
---|
| 350 | grok.name('index') |
---|
[6660] | 351 | grok.require('waeup.viewStudent') |
---|
[6695] | 352 | grok.template('basepage') |
---|
[8983] | 353 | form_fields = grok.AutoFields(IStudentBase).omit('password', 'suspended') |
---|
[6642] | 354 | pnav = 4 |
---|
[6622] | 355 | |
---|
| 356 | @property |
---|
| 357 | def label(self): |
---|
[8983] | 358 | if self.context.suspended: |
---|
[9124] | 359 | return _('${a}: Base Data (account deactivated)', |
---|
[8983] | 360 | mapping = {'a':self.context.display_fullname}) |
---|
| 361 | return _('${a}: Base Data', |
---|
[7723] | 362 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 363 | |
---|
[6699] | 364 | @property |
---|
| 365 | def hasPassword(self): |
---|
| 366 | if self.context.password: |
---|
[7723] | 367 | return _('set') |
---|
| 368 | return _('unset') |
---|
[6699] | 369 | |
---|
[9141] | 370 | class StudentBasePDFFormPage(KofaDisplayFormPage): |
---|
| 371 | """ Page to display student base data in pdf files. |
---|
| 372 | """ |
---|
| 373 | |
---|
[9374] | 374 | def __init__(self, context, request, omit_fields): |
---|
| 375 | self.omit_fields = omit_fields |
---|
| 376 | super(StudentBasePDFFormPage, self).__init__(context, request) |
---|
| 377 | |
---|
| 378 | @property |
---|
| 379 | def form_fields(self): |
---|
| 380 | form_fields = grok.AutoFields(IStudentBase) |
---|
| 381 | for field in self.omit_fields: |
---|
| 382 | form_fields = form_fields.omit(field) |
---|
| 383 | return form_fields |
---|
| 384 | |
---|
[7229] | 385 | class ContactStudentForm(ContactAdminForm): |
---|
| 386 | grok.context(IStudent) |
---|
[7230] | 387 | grok.name('contactstudent') |
---|
[7275] | 388 | grok.require('waeup.viewStudent') |
---|
[7229] | 389 | pnav = 4 |
---|
| 390 | form_fields = grok.AutoFields(IContactForm).select('subject', 'body') |
---|
| 391 | |
---|
[7275] | 392 | def update(self, subject=u''): |
---|
| 393 | self.form_fields.get('subject').field.default = subject |
---|
| 394 | self.subject = subject |
---|
| 395 | return |
---|
| 396 | |
---|
[7229] | 397 | def label(self): |
---|
[7723] | 398 | return _(u'Send message to ${a}', |
---|
| 399 | mapping = {'a':self.context.display_fullname}) |
---|
[7229] | 400 | |
---|
[7459] | 401 | @action('Send message now', style='primary') |
---|
[7229] | 402 | def send(self, *args, **data): |
---|
[7234] | 403 | try: |
---|
[7403] | 404 | email = self.request.principal.email |
---|
[7234] | 405 | except AttributeError: |
---|
[7403] | 406 | email = self.config.email_admin |
---|
| 407 | usertype = getattr(self.request.principal, |
---|
| 408 | 'user_type', 'system').title() |
---|
[7819] | 409 | kofa_utils = getUtility(IKofaUtils) |
---|
[7811] | 410 | success = kofa_utils.sendContactForm( |
---|
[7403] | 411 | self.request.principal.title,email, |
---|
| 412 | self.context.display_fullname,self.context.email, |
---|
| 413 | self.request.principal.id,usertype, |
---|
| 414 | self.config.name, |
---|
| 415 | data['body'],data['subject']) |
---|
[7229] | 416 | if success: |
---|
[7723] | 417 | self.flash(_('Your message has been sent.')) |
---|
[7229] | 418 | else: |
---|
[7723] | 419 | self.flash(_('An smtp server error occurred.')) |
---|
[7229] | 420 | return |
---|
| 421 | |
---|
[9191] | 422 | class ExportPDFAdmissionSlipPage(UtilityView, grok.View): |
---|
| 423 | """Deliver a PDF Admission slip. |
---|
| 424 | """ |
---|
| 425 | grok.context(IStudent) |
---|
| 426 | grok.name('admission_slip.pdf') |
---|
| 427 | grok.require('waeup.viewStudent') |
---|
| 428 | prefix = 'form' |
---|
| 429 | |
---|
| 430 | form_fields = grok.AutoFields(IStudentBase).select('student_id', 'reg_number') |
---|
| 431 | |
---|
| 432 | @property |
---|
| 433 | def label(self): |
---|
| 434 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 435 | return translate(_('Admission Letter of'), |
---|
| 436 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 437 | + ' %s' % self.context.display_fullname |
---|
| 438 | |
---|
| 439 | def render(self): |
---|
| 440 | students_utils = getUtility(IStudentsUtils) |
---|
| 441 | return students_utils.renderPDFAdmissionLetter(self, |
---|
| 442 | self.context.student) |
---|
| 443 | |
---|
[7819] | 444 | class StudentBaseManageFormPage(KofaEditFormPage): |
---|
[7133] | 445 | """ View to manage student base data |
---|
[6631] | 446 | """ |
---|
| 447 | grok.context(IStudent) |
---|
[7133] | 448 | grok.name('manage_base') |
---|
[7136] | 449 | grok.require('waeup.manageStudent') |
---|
[9124] | 450 | form_fields = grok.AutoFields(IStudentBase).omit( |
---|
| 451 | 'student_id', 'adm_code', 'suspended') |
---|
[6695] | 452 | grok.template('basemanagepage') |
---|
[7723] | 453 | label = _('Manage base data') |
---|
[6642] | 454 | pnav = 4 |
---|
[6631] | 455 | |
---|
[6638] | 456 | def update(self): |
---|
| 457 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[7134] | 458 | tabs.need() |
---|
[7490] | 459 | self.tab1 = self.tab2 = '' |
---|
| 460 | qs = self.request.get('QUERY_STRING', '') |
---|
| 461 | if not qs: |
---|
| 462 | qs = 'tab1' |
---|
| 463 | setattr(self, qs, 'active') |
---|
[6638] | 464 | super(StudentBaseManageFormPage, self).update() |
---|
| 465 | self.wf_info = IWorkflowInfo(self.context) |
---|
| 466 | return |
---|
| 467 | |
---|
[7723] | 468 | @action(_('Save'), style='primary') |
---|
[6638] | 469 | def save(self, **data): |
---|
[6701] | 470 | form = self.request.form |
---|
[6790] | 471 | password = form.get('password', None) |
---|
| 472 | password_ctl = form.get('control_password', None) |
---|
| 473 | if password: |
---|
[7147] | 474 | validator = getUtility(IPasswordValidator) |
---|
| 475 | errors = validator.validate_password(password, password_ctl) |
---|
| 476 | if errors: |
---|
| 477 | self.flash( ' '.join(errors)) |
---|
| 478 | return |
---|
| 479 | changed_fields = self.applyData(self.context, **data) |
---|
[6771] | 480 | # Turn list of lists into single list |
---|
| 481 | if changed_fields: |
---|
| 482 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
[7147] | 483 | else: |
---|
| 484 | changed_fields = [] |
---|
| 485 | if password: |
---|
[9273] | 486 | # Now we know that the form has no errors and can set password |
---|
[7147] | 487 | IUserAccount(self.context).setPassword(password) |
---|
| 488 | changed_fields.append('password') |
---|
| 489 | fields_string = ' + '.join(changed_fields) |
---|
[7723] | 490 | self.flash(_('Form has been saved.')) |
---|
[6644] | 491 | if fields_string: |
---|
[8735] | 492 | self.context.writeLogMessage(self, 'saved: % s' % fields_string) |
---|
[6638] | 493 | return |
---|
| 494 | |
---|
[9273] | 495 | class StudentTriggerTransitionFormPage(KofaEditFormPage): |
---|
| 496 | """ View to manage student base data |
---|
| 497 | """ |
---|
| 498 | grok.context(IStudent) |
---|
| 499 | grok.name('trigtrans') |
---|
| 500 | grok.require('waeup.triggerTransition') |
---|
| 501 | grok.template('trigtrans') |
---|
| 502 | label = _('Trigger registration transition') |
---|
| 503 | pnav = 4 |
---|
| 504 | |
---|
| 505 | def getTransitions(self): |
---|
| 506 | """Return a list of dicts of allowed transition ids and titles. |
---|
| 507 | |
---|
| 508 | Each list entry provides keys ``name`` and ``title`` for |
---|
| 509 | internal name and (human readable) title of a single |
---|
| 510 | transition. |
---|
| 511 | """ |
---|
| 512 | wf_info = IWorkflowInfo(self.context) |
---|
| 513 | allowed_transitions = [t for t in wf_info.getManualTransitions() |
---|
| 514 | if not t[0].startswith('pay')] |
---|
| 515 | if self.context.is_postgrad: |
---|
| 516 | allowed_transitions = [t for t in allowed_transitions |
---|
| 517 | if not t[0] in FORBIDDEN_POSTGRAD_TRANS] |
---|
| 518 | return [dict(name='', title=_('No transition'))] +[ |
---|
| 519 | dict(name=x, title=y) for x, y in allowed_transitions] |
---|
| 520 | |
---|
| 521 | @action(_('Save'), style='primary') |
---|
| 522 | def save(self, **data): |
---|
| 523 | form = self.request.form |
---|
| 524 | if form.has_key('transition') and form['transition']: |
---|
| 525 | transition_id = form['transition'] |
---|
| 526 | wf_info = IWorkflowInfo(self.context) |
---|
| 527 | wf_info.fireTransition(transition_id) |
---|
| 528 | return |
---|
| 529 | |
---|
[9124] | 530 | class StudentActivatePage(UtilityView, grok.View): |
---|
| 531 | """ Activate student account |
---|
| 532 | """ |
---|
| 533 | grok.context(IStudent) |
---|
| 534 | grok.name('activate') |
---|
| 535 | grok.require('waeup.manageStudent') |
---|
| 536 | |
---|
| 537 | def update(self): |
---|
| 538 | self.context.suspended = False |
---|
| 539 | self.context.writeLogMessage(self, 'account activated') |
---|
| 540 | history = IObjectHistory(self.context) |
---|
| 541 | history.addMessage('Student account activated') |
---|
| 542 | self.flash(_('Student account has been activated.')) |
---|
| 543 | self.redirect(self.url(self.context)) |
---|
| 544 | return |
---|
| 545 | |
---|
| 546 | def render(self): |
---|
| 547 | return |
---|
| 548 | |
---|
| 549 | class StudentDeactivatePage(UtilityView, grok.View): |
---|
| 550 | """ Deactivate student account |
---|
| 551 | """ |
---|
| 552 | grok.context(IStudent) |
---|
| 553 | grok.name('deactivate') |
---|
| 554 | grok.require('waeup.manageStudent') |
---|
| 555 | |
---|
| 556 | def update(self): |
---|
| 557 | self.context.suspended = True |
---|
| 558 | self.context.writeLogMessage(self, 'account deactivated') |
---|
| 559 | history = IObjectHistory(self.context) |
---|
| 560 | history.addMessage('Student account deactivated') |
---|
| 561 | self.flash(_('Student account has been deactivated.')) |
---|
| 562 | self.redirect(self.url(self.context)) |
---|
| 563 | return |
---|
| 564 | |
---|
| 565 | def render(self): |
---|
| 566 | return |
---|
| 567 | |
---|
[7819] | 568 | class StudentClearanceDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 569 | """ Page to display student clearance data |
---|
| 570 | """ |
---|
| 571 | grok.context(IStudent) |
---|
| 572 | grok.name('view_clearance') |
---|
[6660] | 573 | grok.require('waeup.viewStudent') |
---|
[6642] | 574 | pnav = 4 |
---|
[6631] | 575 | |
---|
| 576 | @property |
---|
[8099] | 577 | def separators(self): |
---|
| 578 | return getUtility(IStudentsUtils).SEPARATORS_DICT |
---|
| 579 | |
---|
| 580 | @property |
---|
[7993] | 581 | def form_fields(self): |
---|
[8472] | 582 | if self.context.is_postgrad: |
---|
[8977] | 583 | form_fields = grok.AutoFields( |
---|
| 584 | IPGStudentClearance).omit('clearance_locked') |
---|
[7993] | 585 | else: |
---|
[8977] | 586 | form_fields = grok.AutoFields( |
---|
| 587 | IUGStudentClearance).omit('clearance_locked') |
---|
[7993] | 588 | return form_fields |
---|
| 589 | |
---|
| 590 | @property |
---|
[6631] | 591 | def label(self): |
---|
[7723] | 592 | return _('${a}: Clearance Data', |
---|
| 593 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 594 | |
---|
[7277] | 595 | class ExportPDFClearanceSlipPage(grok.View): |
---|
| 596 | """Deliver a PDF slip of the context. |
---|
| 597 | """ |
---|
| 598 | grok.context(IStudent) |
---|
| 599 | grok.name('clearance.pdf') |
---|
| 600 | grok.require('waeup.viewStudent') |
---|
| 601 | prefix = 'form' |
---|
[9375] | 602 | omit_fields = ('password', 'suspended', 'phone', 'adm_code', 'sex') |
---|
[7277] | 603 | |
---|
| 604 | @property |
---|
[7993] | 605 | def form_fields(self): |
---|
[8472] | 606 | if self.context.is_postgrad: |
---|
[8977] | 607 | form_fields = grok.AutoFields( |
---|
| 608 | IPGStudentClearance).omit('clearance_locked') |
---|
[7993] | 609 | else: |
---|
[8977] | 610 | form_fields = grok.AutoFields( |
---|
| 611 | IUGStudentClearance).omit('clearance_locked') |
---|
[7993] | 612 | return form_fields |
---|
| 613 | |
---|
| 614 | @property |
---|
[7723] | 615 | def title(self): |
---|
[7819] | 616 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 617 | return translate(_('Clearance Data'), 'waeup.kofa', |
---|
[7723] | 618 | target_language=portal_language) |
---|
| 619 | |
---|
| 620 | @property |
---|
[7277] | 621 | def label(self): |
---|
[7819] | 622 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[9026] | 623 | return translate(_('Clearance Slip of'), |
---|
[7811] | 624 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7723] | 625 | + ' %s' % self.context.display_fullname |
---|
[7277] | 626 | |
---|
[9010] | 627 | def _signatures(self): |
---|
| 628 | if self.context.state == CLEARED: |
---|
| 629 | return (_('Student Signature'), _('Clearance Officer Signature')) |
---|
| 630 | return |
---|
| 631 | |
---|
[7277] | 632 | def render(self): |
---|
[9141] | 633 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 634 | self.request, self.omit_fields) |
---|
[7277] | 635 | students_utils = getUtility(IStudentsUtils) |
---|
| 636 | return students_utils.renderPDF( |
---|
[7318] | 637 | self, 'clearance.pdf', |
---|
[9010] | 638 | self.context.student, studentview, signatures=self._signatures()) |
---|
[7277] | 639 | |
---|
[7819] | 640 | class StudentClearanceManageFormPage(KofaEditFormPage): |
---|
[8120] | 641 | """ Page to manage student clearance data |
---|
[6631] | 642 | """ |
---|
| 643 | grok.context(IStudent) |
---|
[8119] | 644 | grok.name('manage_clearance') |
---|
[7136] | 645 | grok.require('waeup.manageStudent') |
---|
[7134] | 646 | grok.template('clearanceeditpage') |
---|
[7723] | 647 | label = _('Manage clearance data') |
---|
[6642] | 648 | pnav = 4 |
---|
[6650] | 649 | |
---|
[7993] | 650 | @property |
---|
[8099] | 651 | def separators(self): |
---|
| 652 | return getUtility(IStudentsUtils).SEPARATORS_DICT |
---|
| 653 | |
---|
| 654 | @property |
---|
[7993] | 655 | def form_fields(self): |
---|
[8472] | 656 | if self.context.is_postgrad: |
---|
[8977] | 657 | form_fields = grok.AutoFields(IPGStudentClearance).omit('clr_code') |
---|
[7993] | 658 | else: |
---|
[8977] | 659 | form_fields = grok.AutoFields(IUGStudentClearance).omit('clr_code') |
---|
[7993] | 660 | return form_fields |
---|
| 661 | |
---|
[6650] | 662 | def update(self): |
---|
| 663 | datepicker.need() # Enable jQuery datepicker in date fields. |
---|
[7134] | 664 | tabs.need() |
---|
[7490] | 665 | self.tab1 = self.tab2 = '' |
---|
| 666 | qs = self.request.get('QUERY_STRING', '') |
---|
| 667 | if not qs: |
---|
| 668 | qs = 'tab1' |
---|
| 669 | setattr(self, qs, 'active') |
---|
[6650] | 670 | return super(StudentClearanceManageFormPage, self).update() |
---|
| 671 | |
---|
[7723] | 672 | @action(_('Save'), style='primary') |
---|
[6695] | 673 | def save(self, **data): |
---|
[6762] | 674 | msave(self, **data) |
---|
[6695] | 675 | return |
---|
| 676 | |
---|
[7459] | 677 | class StudentClearPage(UtilityView, grok.View): |
---|
[7158] | 678 | """ Clear student by clearance officer |
---|
| 679 | """ |
---|
| 680 | grok.context(IStudent) |
---|
| 681 | grok.name('clear') |
---|
| 682 | grok.require('waeup.clearStudent') |
---|
| 683 | |
---|
| 684 | def update(self): |
---|
| 685 | if self.context.state == REQUESTED: |
---|
| 686 | IWorkflowInfo(self.context).fireTransition('clear') |
---|
[7723] | 687 | self.flash(_('Student has been cleared.')) |
---|
[7158] | 688 | else: |
---|
[7723] | 689 | self.flash(_('Student is in wrong state.')) |
---|
[7158] | 690 | self.redirect(self.url(self.context,'view_clearance')) |
---|
| 691 | return |
---|
| 692 | |
---|
| 693 | def render(self): |
---|
| 694 | return |
---|
| 695 | |
---|
[7459] | 696 | class StudentRejectClearancePage(UtilityView, grok.View): |
---|
[7158] | 697 | """ Reject clearance by clearance officers |
---|
| 698 | """ |
---|
| 699 | grok.context(IStudent) |
---|
| 700 | grok.name('reject_clearance') |
---|
| 701 | grok.require('waeup.clearStudent') |
---|
| 702 | |
---|
| 703 | def update(self): |
---|
| 704 | if self.context.state == CLEARED: |
---|
| 705 | IWorkflowInfo(self.context).fireTransition('reset4') |
---|
[7723] | 706 | message = _('Clearance has been annulled.') |
---|
[7275] | 707 | self.flash(message) |
---|
[7158] | 708 | elif self.context.state == REQUESTED: |
---|
| 709 | IWorkflowInfo(self.context).fireTransition('reset3') |
---|
[7723] | 710 | message = _('Clearance request has been rejected.') |
---|
[7275] | 711 | self.flash(message) |
---|
[7158] | 712 | else: |
---|
[7723] | 713 | self.flash(_('Student is in wrong state.')) |
---|
[7334] | 714 | self.redirect(self.url(self.context,'view_clearance')) |
---|
[7275] | 715 | return |
---|
| 716 | args = {'subject':message} |
---|
| 717 | self.redirect(self.url(self.context) + |
---|
| 718 | '/contactstudent?%s' % urlencode(args)) |
---|
[7158] | 719 | return |
---|
| 720 | |
---|
| 721 | def render(self): |
---|
| 722 | return |
---|
| 723 | |
---|
[7819] | 724 | class StudentPersonalDisplayFormPage(KofaDisplayFormPage): |
---|
[6631] | 725 | """ Page to display student personal data |
---|
| 726 | """ |
---|
| 727 | grok.context(IStudent) |
---|
| 728 | grok.name('view_personal') |
---|
[6660] | 729 | grok.require('waeup.viewStudent') |
---|
[6631] | 730 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
[7386] | 731 | form_fields['perm_address'].custom_widget = BytesDisplayWidget |
---|
[6642] | 732 | pnav = 4 |
---|
[6631] | 733 | |
---|
| 734 | @property |
---|
| 735 | def label(self): |
---|
[7723] | 736 | return _('${a}: Personal Data', |
---|
| 737 | mapping = {'a':self.context.display_fullname}) |
---|
[6631] | 738 | |
---|
[8903] | 739 | class StudentPersonalManageFormPage(KofaEditFormPage): |
---|
| 740 | """ Page to manage personal data |
---|
[6631] | 741 | """ |
---|
| 742 | grok.context(IStudent) |
---|
[8903] | 743 | grok.name('manage_personal') |
---|
| 744 | grok.require('waeup.manageStudent') |
---|
[6631] | 745 | form_fields = grok.AutoFields(IStudentPersonal) |
---|
[8903] | 746 | label = _('Manage personal data') |
---|
[6642] | 747 | pnav = 4 |
---|
[6631] | 748 | |
---|
[7723] | 749 | @action(_('Save'), style='primary') |
---|
[6762] | 750 | def save(self, **data): |
---|
| 751 | msave(self, **data) |
---|
| 752 | return |
---|
| 753 | |
---|
[8903] | 754 | class StudentPersonalEditFormPage(StudentPersonalManageFormPage): |
---|
| 755 | """ Page to edit personal data |
---|
| 756 | """ |
---|
| 757 | grok.name('edit_personal') |
---|
| 758 | grok.require('waeup.handleStudent') |
---|
| 759 | label = _('Edit personal data') |
---|
| 760 | pnav = 4 |
---|
| 761 | |
---|
[7819] | 762 | class StudyCourseDisplayFormPage(KofaDisplayFormPage): |
---|
[6635] | 763 | """ Page to display the student study course data |
---|
| 764 | """ |
---|
| 765 | grok.context(IStudentStudyCourse) |
---|
| 766 | grok.name('index') |
---|
[6660] | 767 | grok.require('waeup.viewStudent') |
---|
[6775] | 768 | grok.template('studycoursepage') |
---|
[6642] | 769 | pnav = 4 |
---|
[6635] | 770 | |
---|
| 771 | @property |
---|
[8972] | 772 | def form_fields(self): |
---|
| 773 | if self.context.is_postgrad: |
---|
| 774 | form_fields = grok.AutoFields(IStudentStudyCourse).omit( |
---|
| 775 | 'current_verdict', 'previous_verdict') |
---|
| 776 | else: |
---|
| 777 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 778 | return form_fields |
---|
| 779 | |
---|
| 780 | @property |
---|
[6635] | 781 | def label(self): |
---|
[9140] | 782 | if self.context.is_current: |
---|
| 783 | return _('${a}: Study Course', |
---|
| 784 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
| 785 | else: |
---|
| 786 | return _('${a}: Previous Study Course', |
---|
| 787 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6635] | 788 | |
---|
[6912] | 789 | @property |
---|
| 790 | def current_mode(self): |
---|
[7641] | 791 | if self.context.certificate is not None: |
---|
[7841] | 792 | studymodes_dict = getUtility(IKofaUtils).STUDY_MODES_DICT |
---|
[7681] | 793 | return studymodes_dict[self.context.certificate.study_mode] |
---|
[7171] | 794 | return |
---|
[7642] | 795 | |
---|
[7171] | 796 | @property |
---|
| 797 | def department(self): |
---|
[7205] | 798 | if self.context.certificate is not None: |
---|
[7171] | 799 | return self.context.certificate.__parent__.__parent__ |
---|
| 800 | return |
---|
[6912] | 801 | |
---|
[7171] | 802 | @property |
---|
| 803 | def faculty(self): |
---|
[7205] | 804 | if self.context.certificate is not None: |
---|
[7171] | 805 | return self.context.certificate.__parent__.__parent__.__parent__ |
---|
| 806 | return |
---|
| 807 | |
---|
[9140] | 808 | @property |
---|
| 809 | def prev_studycourses(self): |
---|
| 810 | if self.context.is_current: |
---|
| 811 | if self.context.__parent__.get('studycourse_2', None) is not None: |
---|
| 812 | return ( |
---|
| 813 | {'href':self.url(self.context.student) + '/studycourse_1', |
---|
| 814 | 'title':_('First Study Course, ')}, |
---|
| 815 | {'href':self.url(self.context.student) + '/studycourse_2', |
---|
| 816 | 'title':_('Second Study Course')} |
---|
| 817 | ) |
---|
| 818 | if self.context.__parent__.get('studycourse_1', None) is not None: |
---|
| 819 | return ( |
---|
| 820 | {'href':self.url(self.context.student) + '/studycourse_1', |
---|
| 821 | 'title':_('First Study Course')}, |
---|
| 822 | ) |
---|
| 823 | return |
---|
| 824 | |
---|
[7819] | 825 | class StudyCourseManageFormPage(KofaEditFormPage): |
---|
[6649] | 826 | """ Page to edit the student study course data |
---|
| 827 | """ |
---|
| 828 | grok.context(IStudentStudyCourse) |
---|
[6775] | 829 | grok.name('manage') |
---|
[7136] | 830 | grok.require('waeup.manageStudent') |
---|
[6775] | 831 | grok.template('studycoursemanagepage') |
---|
[7723] | 832 | label = _('Manage study course') |
---|
[6649] | 833 | pnav = 4 |
---|
[7723] | 834 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 835 | tabtwoactions = [_('Remove selected levels'),_('Cancel')] |
---|
| 836 | tabthreeactions = [_('Add study level')] |
---|
[6649] | 837 | |
---|
[8972] | 838 | @property |
---|
| 839 | def form_fields(self): |
---|
| 840 | if self.context.is_postgrad: |
---|
| 841 | form_fields = grok.AutoFields(IStudentStudyCourse).omit( |
---|
| 842 | 'current_verdict', 'previous_verdict') |
---|
| 843 | else: |
---|
| 844 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 845 | return form_fields |
---|
| 846 | |
---|
[6775] | 847 | def update(self): |
---|
[9139] | 848 | if not self.context.is_current: |
---|
| 849 | emit_lock_message(self) |
---|
| 850 | return |
---|
[6775] | 851 | super(StudyCourseManageFormPage, self).update() |
---|
| 852 | tabs.need() |
---|
[7484] | 853 | self.tab1 = self.tab2 = '' |
---|
| 854 | qs = self.request.get('QUERY_STRING', '') |
---|
| 855 | if not qs: |
---|
| 856 | qs = 'tab1' |
---|
| 857 | setattr(self, qs, 'active') |
---|
[7490] | 858 | warning.need() |
---|
| 859 | datatable.need() |
---|
| 860 | return |
---|
[6775] | 861 | |
---|
[7723] | 862 | @action(_('Save'), style='primary') |
---|
[6761] | 863 | def save(self, **data): |
---|
[8099] | 864 | try: |
---|
| 865 | msave(self, **data) |
---|
| 866 | except ConstraintNotSatisfied: |
---|
| 867 | # The selected level might not exist in certificate |
---|
| 868 | self.flash(_('Current level not available for certificate.')) |
---|
| 869 | return |
---|
[8081] | 870 | notify(grok.ObjectModifiedEvent(self.context.__parent__)) |
---|
[6761] | 871 | return |
---|
| 872 | |
---|
[6775] | 873 | @property |
---|
| 874 | def level_dict(self): |
---|
| 875 | studylevelsource = StudyLevelSource().factory |
---|
| 876 | for code in studylevelsource.getValues(self.context): |
---|
| 877 | title = studylevelsource.getTitle(self.context, code) |
---|
| 878 | yield(dict(code=code, title=title)) |
---|
| 879 | |
---|
[7723] | 880 | @action(_('Add study level')) |
---|
[6774] | 881 | def addStudyLevel(self, **data): |
---|
[6775] | 882 | level_code = self.request.form.get('addlevel', None) |
---|
[8323] | 883 | studylevel = createObject(u'waeup.StudentStudyLevel') |
---|
[6775] | 884 | studylevel.level = int(level_code) |
---|
[9255] | 885 | studylevel.level_session = self.context.current_session |
---|
[6775] | 886 | try: |
---|
[6782] | 887 | self.context.addStudentStudyLevel( |
---|
| 888 | self.context.certificate,studylevel) |
---|
[7723] | 889 | self.flash(_('Study level has been added.')) |
---|
[6775] | 890 | except KeyError: |
---|
[7723] | 891 | self.flash(_('This level exists.')) |
---|
[7484] | 892 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6774] | 893 | return |
---|
| 894 | |
---|
[7723] | 895 | @jsaction(_('Remove selected levels')) |
---|
[6775] | 896 | def delStudyLevels(self, **data): |
---|
| 897 | form = self.request.form |
---|
| 898 | if form.has_key('val_id'): |
---|
| 899 | child_id = form['val_id'] |
---|
| 900 | else: |
---|
[7723] | 901 | self.flash(_('No study level selected.')) |
---|
[7484] | 902 | self.redirect(self.url(self.context, '@@manage')+'?tab2') |
---|
[6775] | 903 | return |
---|
| 904 | if not isinstance(child_id, list): |
---|
| 905 | child_id = [child_id] |
---|
| 906 | deleted = [] |
---|
| 907 | for id in child_id: |
---|
[7723] | 908 | del self.context[id] |
---|
| 909 | deleted.append(id) |
---|
[6775] | 910 | if len(deleted): |
---|
[7723] | 911 | self.flash(_('Successfully removed: ${a}', |
---|
| 912 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 913 | self.context.writeLogMessage( |
---|
| 914 | self,'removed: %s' % ', '.join(deleted)) |
---|
[7484] | 915 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6775] | 916 | return |
---|
[6774] | 917 | |
---|
[9138] | 918 | class StudentTransferFormPage(KofaAddFormPage): |
---|
| 919 | """Page to transfer the student. |
---|
| 920 | """ |
---|
| 921 | grok.context(IStudent) |
---|
| 922 | grok.name('transfer') |
---|
| 923 | grok.require('waeup.manageStudent') |
---|
| 924 | label = _('Transfer student') |
---|
| 925 | form_fields = grok.AutoFields(IStudentStudyCourseTransfer).omit( |
---|
| 926 | 'entry_mode', 'entry_session') |
---|
| 927 | pnav = 4 |
---|
| 928 | |
---|
| 929 | def update(self): |
---|
| 930 | super(StudentTransferFormPage, self).update() |
---|
| 931 | warning.need() |
---|
| 932 | return |
---|
| 933 | |
---|
| 934 | @jsaction(_('Transfer')) |
---|
| 935 | def transferStudent(self, **data): |
---|
| 936 | error = self.context.transfer(**data) |
---|
| 937 | if error == -1: |
---|
| 938 | self.flash(_('Current level does not match certificate levels.')) |
---|
| 939 | elif error == -2: |
---|
| 940 | self.flash(_('Former study course record incomplete.')) |
---|
| 941 | elif error == -3: |
---|
| 942 | self.flash(_('Maximum number of transfers exceeded.')) |
---|
| 943 | else: |
---|
| 944 | self.flash(_('Successfully transferred.')) |
---|
| 945 | return |
---|
| 946 | |
---|
[7819] | 947 | class StudyLevelDisplayFormPage(KofaDisplayFormPage): |
---|
[6774] | 948 | """ Page to display student study levels |
---|
| 949 | """ |
---|
| 950 | grok.context(IStudentStudyLevel) |
---|
| 951 | grok.name('index') |
---|
| 952 | grok.require('waeup.viewStudent') |
---|
[6775] | 953 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
[9161] | 954 | form_fields[ |
---|
| 955 | 'validation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6783] | 956 | grok.template('studylevelpage') |
---|
[6774] | 957 | pnav = 4 |
---|
| 958 | |
---|
[7310] | 959 | def update(self): |
---|
| 960 | super(StudyLevelDisplayFormPage, self).update() |
---|
| 961 | datatable.need() |
---|
| 962 | return |
---|
| 963 | |
---|
[6774] | 964 | @property |
---|
[8141] | 965 | def translated_values(self): |
---|
[8921] | 966 | return translated_values(self) |
---|
[8141] | 967 | |
---|
| 968 | @property |
---|
[6774] | 969 | def label(self): |
---|
[7833] | 970 | # Here we know that the cookie has been set |
---|
| 971 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 972 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 973 | target_language=lang) |
---|
| 974 | return _('${a}: Study Level ${b}', mapping = { |
---|
[8736] | 975 | 'a':self.context.student.display_fullname, |
---|
[7723] | 976 | 'b':level_title}) |
---|
[6774] | 977 | |
---|
[6803] | 978 | @property |
---|
| 979 | def total_credits(self): |
---|
| 980 | total_credits = 0 |
---|
| 981 | for key, val in self.context.items(): |
---|
| 982 | total_credits += val.credits |
---|
| 983 | return total_credits |
---|
| 984 | |
---|
[7459] | 985 | class ExportPDFCourseRegistrationSlipPage(UtilityView, grok.View): |
---|
[7028] | 986 | """Deliver a PDF slip of the context. |
---|
| 987 | """ |
---|
| 988 | grok.context(IStudentStudyLevel) |
---|
| 989 | grok.name('course_registration.pdf') |
---|
| 990 | grok.require('waeup.viewStudent') |
---|
| 991 | form_fields = grok.AutoFields(IStudentStudyLevel) |
---|
| 992 | prefix = 'form' |
---|
[9375] | 993 | omit_fields = ('password', 'suspended', 'phone', 'adm_code', 'sex') |
---|
[7028] | 994 | |
---|
| 995 | @property |
---|
[7723] | 996 | def title(self): |
---|
[7819] | 997 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 998 | return translate(_('Level Data'), 'waeup.kofa', |
---|
[7723] | 999 | target_language=portal_language) |
---|
| 1000 | |
---|
| 1001 | @property |
---|
| 1002 | def content_title(self): |
---|
[7819] | 1003 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1004 | return translate(_('Course List'), 'waeup.kofa', |
---|
[7723] | 1005 | target_language=portal_language) |
---|
| 1006 | |
---|
| 1007 | @property |
---|
[7028] | 1008 | def label(self): |
---|
[7819] | 1009 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1010 | lang = self.request.cookies.get('kofa.language', portal_language) |
---|
| 1011 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1012 | target_language=lang) |
---|
[8141] | 1013 | return translate(_('Course Registration Slip'), |
---|
[7811] | 1014 | 'waeup.kofa', target_language=portal_language) \ |
---|
[7723] | 1015 | + ' %s' % level_title |
---|
[7028] | 1016 | |
---|
| 1017 | def render(self): |
---|
[7819] | 1018 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1019 | Sem = translate(_('Sem.'), 'waeup.kofa', target_language=portal_language) |
---|
| 1020 | Code = translate(_('Code'), 'waeup.kofa', target_language=portal_language) |
---|
| 1021 | Title = translate(_('Title'), 'waeup.kofa', target_language=portal_language) |
---|
| 1022 | Dept = translate(_('Dept.'), 'waeup.kofa', target_language=portal_language) |
---|
| 1023 | Faculty = translate(_('Faculty'), 'waeup.kofa', target_language=portal_language) |
---|
| 1024 | Cred = translate(_('Cred.'), 'waeup.kofa', target_language=portal_language) |
---|
[9320] | 1025 | Mand = translate(_('Requ.'), 'waeup.kofa', target_language=portal_language) |
---|
[7811] | 1026 | Score = translate(_('Score'), 'waeup.kofa', target_language=portal_language) |
---|
[9141] | 1027 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 1028 | self.request, self.omit_fields) |
---|
[7150] | 1029 | students_utils = getUtility(IStudentsUtils) |
---|
[7318] | 1030 | tabledata = sorted(self.context.values(), |
---|
| 1031 | key=lambda value: str(value.semester) + value.code) |
---|
[7186] | 1032 | return students_utils.renderPDF( |
---|
[7318] | 1033 | self, 'course_registration.pdf', |
---|
[8736] | 1034 | self.context.student, studentview, |
---|
[7723] | 1035 | tableheader=[(Sem,'semester', 1.5),(Code,'code', 2.5), |
---|
| 1036 | (Title,'title', 5), |
---|
| 1037 | (Dept,'dcode', 1.5), (Faculty,'fcode', 1.5), |
---|
| 1038 | (Cred, 'credits', 1.5), |
---|
| 1039 | (Mand, 'mandatory', 1.5), |
---|
[8141] | 1040 | (Score, 'score', 1.5), |
---|
| 1041 | #('Auto', 'automatic', 1.5) |
---|
[7304] | 1042 | ], |
---|
[7318] | 1043 | tabledata=tabledata) |
---|
[7028] | 1044 | |
---|
[7819] | 1045 | class StudyLevelManageFormPage(KofaEditFormPage): |
---|
[6792] | 1046 | """ Page to edit the student study level data |
---|
| 1047 | """ |
---|
| 1048 | grok.context(IStudentStudyLevel) |
---|
| 1049 | grok.name('manage') |
---|
[7136] | 1050 | grok.require('waeup.manageStudent') |
---|
[6792] | 1051 | grok.template('studylevelmanagepage') |
---|
[9161] | 1052 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
| 1053 | 'validation_date', 'validated_by') |
---|
[6792] | 1054 | pnav = 4 |
---|
[7723] | 1055 | taboneactions = [_('Save'),_('Cancel')] |
---|
| 1056 | tabtwoactions = [_('Add course ticket'), |
---|
| 1057 | _('Remove selected tickets'),_('Cancel')] |
---|
[6792] | 1058 | |
---|
| 1059 | def update(self): |
---|
[9139] | 1060 | if not self.context.__parent__.is_current: |
---|
| 1061 | emit_lock_message(self) |
---|
| 1062 | return |
---|
[6792] | 1063 | super(StudyLevelManageFormPage, self).update() |
---|
| 1064 | tabs.need() |
---|
[7484] | 1065 | self.tab1 = self.tab2 = '' |
---|
| 1066 | qs = self.request.get('QUERY_STRING', '') |
---|
| 1067 | if not qs: |
---|
| 1068 | qs = 'tab1' |
---|
| 1069 | setattr(self, qs, 'active') |
---|
[7490] | 1070 | warning.need() |
---|
| 1071 | datatable.need() |
---|
[6792] | 1072 | return |
---|
| 1073 | |
---|
| 1074 | @property |
---|
[8921] | 1075 | def translated_values(self): |
---|
| 1076 | return translated_values(self) |
---|
| 1077 | |
---|
| 1078 | @property |
---|
[6792] | 1079 | def label(self): |
---|
[7833] | 1080 | # Here we know that the cookie has been set |
---|
| 1081 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 1082 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 1083 | target_language=lang) |
---|
| 1084 | return _('Manage study level ${a}', |
---|
| 1085 | mapping = {'a':level_title}) |
---|
[6792] | 1086 | |
---|
[7723] | 1087 | @action(_('Save'), style='primary') |
---|
[6792] | 1088 | def save(self, **data): |
---|
| 1089 | msave(self, **data) |
---|
| 1090 | return |
---|
| 1091 | |
---|
[7723] | 1092 | @action(_('Add course ticket')) |
---|
[6795] | 1093 | def addCourseTicket(self, **data): |
---|
| 1094 | self.redirect(self.url(self.context, '@@add')) |
---|
[6792] | 1095 | |
---|
[7723] | 1096 | @jsaction(_('Remove selected tickets')) |
---|
[6792] | 1097 | def delCourseTicket(self, **data): |
---|
| 1098 | form = self.request.form |
---|
| 1099 | if form.has_key('val_id'): |
---|
| 1100 | child_id = form['val_id'] |
---|
| 1101 | else: |
---|
[7723] | 1102 | self.flash(_('No ticket selected.')) |
---|
[7484] | 1103 | self.redirect(self.url(self.context, '@@manage')+'?tab2') |
---|
[6792] | 1104 | return |
---|
| 1105 | if not isinstance(child_id, list): |
---|
| 1106 | child_id = [child_id] |
---|
| 1107 | deleted = [] |
---|
| 1108 | for id in child_id: |
---|
[7723] | 1109 | del self.context[id] |
---|
| 1110 | deleted.append(id) |
---|
[6792] | 1111 | if len(deleted): |
---|
[7723] | 1112 | self.flash(_('Successfully removed: ${a}', |
---|
| 1113 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 1114 | self.context.writeLogMessage( |
---|
| 1115 | self,'removed: %s' % ', '.join(deleted)) |
---|
[7484] | 1116 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6792] | 1117 | return |
---|
| 1118 | |
---|
[7459] | 1119 | class ValidateCoursesPage(UtilityView, grok.View): |
---|
[7334] | 1120 | """ Validate course list by course adviser |
---|
| 1121 | """ |
---|
| 1122 | grok.context(IStudentStudyLevel) |
---|
| 1123 | grok.name('validate_courses') |
---|
| 1124 | grok.require('waeup.validateStudent') |
---|
| 1125 | |
---|
| 1126 | def update(self): |
---|
[9139] | 1127 | if not self.context.__parent__.is_current: |
---|
| 1128 | emit_lock_message(self) |
---|
| 1129 | return |
---|
[7334] | 1130 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
[7723] | 1131 | self.flash(_('This level does not correspond current level.')) |
---|
[8736] | 1132 | elif self.context.student.state == REGISTERED: |
---|
| 1133 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[7642] | 1134 | 'validate_courses') |
---|
[7723] | 1135 | self.flash(_('Course list has been validated.')) |
---|
[7334] | 1136 | else: |
---|
[7723] | 1137 | self.flash(_('Student is in the wrong state.')) |
---|
[7334] | 1138 | self.redirect(self.url(self.context)) |
---|
| 1139 | return |
---|
| 1140 | |
---|
| 1141 | def render(self): |
---|
| 1142 | return |
---|
| 1143 | |
---|
[7459] | 1144 | class RejectCoursesPage(UtilityView, grok.View): |
---|
[7334] | 1145 | """ Reject course list by course adviser |
---|
| 1146 | """ |
---|
| 1147 | grok.context(IStudentStudyLevel) |
---|
| 1148 | grok.name('reject_courses') |
---|
| 1149 | grok.require('waeup.validateStudent') |
---|
| 1150 | |
---|
| 1151 | def update(self): |
---|
[9139] | 1152 | if not self.context.__parent__.is_current: |
---|
| 1153 | emit_lock_message(self) |
---|
| 1154 | return |
---|
[7334] | 1155 | if str(self.context.__parent__.current_level) != self.context.__name__: |
---|
[7723] | 1156 | self.flash(_('This level does not correspond current level.')) |
---|
[7334] | 1157 | self.redirect(self.url(self.context)) |
---|
| 1158 | return |
---|
[8736] | 1159 | elif self.context.student.state == VALIDATED: |
---|
| 1160 | IWorkflowInfo(self.context.student).fireTransition('reset8') |
---|
[7723] | 1161 | message = _('Course list request has been annulled.') |
---|
[7334] | 1162 | self.flash(message) |
---|
[8736] | 1163 | elif self.context.student.state == REGISTERED: |
---|
| 1164 | IWorkflowInfo(self.context.student).fireTransition('reset7') |
---|
[7723] | 1165 | message = _('Course list request has been rejected:') |
---|
[7334] | 1166 | self.flash(message) |
---|
| 1167 | else: |
---|
[7723] | 1168 | self.flash(_('Student is in the wrong state.')) |
---|
[7334] | 1169 | self.redirect(self.url(self.context)) |
---|
| 1170 | return |
---|
| 1171 | args = {'subject':message} |
---|
[8736] | 1172 | self.redirect(self.url(self.context.student) + |
---|
[7334] | 1173 | '/contactstudent?%s' % urlencode(args)) |
---|
| 1174 | return |
---|
| 1175 | |
---|
| 1176 | def render(self): |
---|
| 1177 | return |
---|
| 1178 | |
---|
[7819] | 1179 | class CourseTicketAddFormPage(KofaAddFormPage): |
---|
[6808] | 1180 | """Add a course ticket. |
---|
[6795] | 1181 | """ |
---|
| 1182 | grok.context(IStudentStudyLevel) |
---|
| 1183 | grok.name('add') |
---|
[7136] | 1184 | grok.require('waeup.manageStudent') |
---|
[7723] | 1185 | label = _('Add course ticket') |
---|
[9420] | 1186 | form_fields = grok.AutoFields(ICourseTicketAdd) |
---|
[6795] | 1187 | pnav = 4 |
---|
| 1188 | |
---|
[9139] | 1189 | def update(self): |
---|
| 1190 | if not self.context.__parent__.is_current: |
---|
| 1191 | emit_lock_message(self) |
---|
| 1192 | return |
---|
| 1193 | super(CourseTicketAddFormPage, self).update() |
---|
| 1194 | return |
---|
| 1195 | |
---|
[7723] | 1196 | @action(_('Add course ticket')) |
---|
[6795] | 1197 | def addCourseTicket(self, **data): |
---|
[8325] | 1198 | ticket = createObject(u'waeup.CourseTicket') |
---|
[6795] | 1199 | course = data['course'] |
---|
[6802] | 1200 | ticket.automatic = False |
---|
[8141] | 1201 | ticket.carry_over = False |
---|
[6795] | 1202 | try: |
---|
[8920] | 1203 | self.context.addCourseTicket(ticket, course) |
---|
[6795] | 1204 | except KeyError: |
---|
[7723] | 1205 | self.flash(_('The ticket exists.')) |
---|
[6795] | 1206 | return |
---|
[7723] | 1207 | self.flash(_('Successfully added ${a}.', |
---|
| 1208 | mapping = {'a':ticket.code})) |
---|
[7484] | 1209 | self.redirect(self.url(self.context, u'@@manage')+'?tab2') |
---|
[6795] | 1210 | return |
---|
| 1211 | |
---|
[7834] | 1212 | @action(_('Cancel'), validator=NullValidator) |
---|
[6795] | 1213 | def cancel(self, **data): |
---|
| 1214 | self.redirect(self.url(self.context)) |
---|
| 1215 | |
---|
[7819] | 1216 | class CourseTicketDisplayFormPage(KofaDisplayFormPage): |
---|
[6796] | 1217 | """ Page to display course tickets |
---|
| 1218 | """ |
---|
| 1219 | grok.context(ICourseTicket) |
---|
| 1220 | grok.name('index') |
---|
| 1221 | grok.require('waeup.viewStudent') |
---|
| 1222 | form_fields = grok.AutoFields(ICourseTicket) |
---|
| 1223 | pnav = 4 |
---|
| 1224 | |
---|
| 1225 | @property |
---|
| 1226 | def label(self): |
---|
[7723] | 1227 | return _('${a}: Course Ticket ${b}', mapping = { |
---|
[8736] | 1228 | 'a':self.context.student.display_fullname, |
---|
[7723] | 1229 | 'b':self.context.code}) |
---|
[6796] | 1230 | |
---|
[7819] | 1231 | class CourseTicketManageFormPage(KofaEditFormPage): |
---|
[6796] | 1232 | """ Page to manage course tickets |
---|
| 1233 | """ |
---|
| 1234 | grok.context(ICourseTicket) |
---|
| 1235 | grok.name('manage') |
---|
[7136] | 1236 | grok.require('waeup.manageStudent') |
---|
[9420] | 1237 | form_fields = grok.AutoFields(ICourseTicket) |
---|
| 1238 | form_fields['title'].for_display = True |
---|
| 1239 | form_fields['fcode'].for_display = True |
---|
| 1240 | form_fields['dcode'].for_display = True |
---|
| 1241 | form_fields['semester'].for_display = True |
---|
| 1242 | form_fields['passmark'].for_display = True |
---|
| 1243 | form_fields['credits'].for_display = True |
---|
| 1244 | form_fields['mandatory'].for_display = True |
---|
| 1245 | form_fields['automatic'].for_display = True |
---|
[9422] | 1246 | form_fields['carry_over'].for_display = True |
---|
[6796] | 1247 | pnav = 4 |
---|
| 1248 | |
---|
| 1249 | @property |
---|
| 1250 | def label(self): |
---|
[7723] | 1251 | return _('Manage course ticket ${a}', mapping = {'a':self.context.code}) |
---|
[6796] | 1252 | |
---|
[7459] | 1253 | @action('Save', style='primary') |
---|
[6796] | 1254 | def save(self, **data): |
---|
| 1255 | msave(self, **data) |
---|
| 1256 | return |
---|
| 1257 | |
---|
[7819] | 1258 | class PaymentsManageFormPage(KofaEditFormPage): |
---|
[6869] | 1259 | """ Page to manage the student payments |
---|
[7642] | 1260 | |
---|
| 1261 | This manage form page is for both students and students officers. |
---|
[6869] | 1262 | """ |
---|
| 1263 | grok.context(IStudentPaymentsContainer) |
---|
[6940] | 1264 | grok.name('index') |
---|
[7181] | 1265 | grok.require('waeup.payStudent') |
---|
[6869] | 1266 | form_fields = grok.AutoFields(IStudentPaymentsContainer) |
---|
| 1267 | grok.template('paymentsmanagepage') |
---|
| 1268 | pnav = 4 |
---|
| 1269 | |
---|
[6940] | 1270 | def unremovable(self, ticket): |
---|
[7251] | 1271 | usertype = getattr(self.request.principal, 'user_type', None) |
---|
| 1272 | if not usertype: |
---|
| 1273 | return False |
---|
| 1274 | return (self.request.principal.user_type == 'student' and ticket.r_code) |
---|
[6940] | 1275 | |
---|
[6869] | 1276 | @property |
---|
| 1277 | def label(self): |
---|
[7723] | 1278 | return _('${a}: Payments', |
---|
| 1279 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6869] | 1280 | |
---|
| 1281 | def update(self): |
---|
| 1282 | super(PaymentsManageFormPage, self).update() |
---|
| 1283 | datatable.need() |
---|
[7329] | 1284 | warning.need() |
---|
[6869] | 1285 | return |
---|
| 1286 | |
---|
[7723] | 1287 | @jsaction(_('Remove selected tickets')) |
---|
[6869] | 1288 | def delPaymentTicket(self, **data): |
---|
| 1289 | form = self.request.form |
---|
| 1290 | if form.has_key('val_id'): |
---|
| 1291 | child_id = form['val_id'] |
---|
| 1292 | else: |
---|
[7723] | 1293 | self.flash(_('No payment selected.')) |
---|
[6940] | 1294 | self.redirect(self.url(self.context)) |
---|
[6869] | 1295 | return |
---|
| 1296 | if not isinstance(child_id, list): |
---|
| 1297 | child_id = [child_id] |
---|
| 1298 | deleted = [] |
---|
| 1299 | for id in child_id: |
---|
[6992] | 1300 | # Students are not allowed to remove used payment tickets |
---|
[6940] | 1301 | if not self.unremovable(self.context[id]): |
---|
[7723] | 1302 | del self.context[id] |
---|
| 1303 | deleted.append(id) |
---|
[6869] | 1304 | if len(deleted): |
---|
[7723] | 1305 | self.flash(_('Successfully removed: ${a}', |
---|
| 1306 | mapping = {'a': ', '.join(deleted)})) |
---|
[8735] | 1307 | self.context.writeLogMessage( |
---|
[8885] | 1308 | self,'removed: %s' % ', '.join(deleted)) |
---|
[6940] | 1309 | self.redirect(self.url(self.context)) |
---|
[6869] | 1310 | return |
---|
| 1311 | |
---|
[7723] | 1312 | @action(_('Add online payment ticket')) |
---|
[6869] | 1313 | def addPaymentTicket(self, **data): |
---|
| 1314 | self.redirect(self.url(self.context, '@@addop')) |
---|
| 1315 | |
---|
[7819] | 1316 | class OnlinePaymentAddFormPage(KofaAddFormPage): |
---|
[6869] | 1317 | """ Page to add an online payment ticket |
---|
| 1318 | """ |
---|
| 1319 | grok.context(IStudentPaymentsContainer) |
---|
| 1320 | grok.name('addop') |
---|
[7181] | 1321 | grok.require('waeup.payStudent') |
---|
[6877] | 1322 | form_fields = grok.AutoFields(IStudentOnlinePayment).select( |
---|
[6869] | 1323 | 'p_category') |
---|
[7723] | 1324 | label = _('Add online payment') |
---|
[6869] | 1325 | pnav = 4 |
---|
[7642] | 1326 | |
---|
[7723] | 1327 | @action(_('Create ticket'), style='primary') |
---|
[6869] | 1328 | def createTicket(self, **data): |
---|
[7024] | 1329 | p_category = data['p_category'] |
---|
[9148] | 1330 | previous_session = data.get('p_session', None) |
---|
| 1331 | previous_level = data.get('p_level', None) |
---|
[7024] | 1332 | student = self.context.__parent__ |
---|
| 1333 | if p_category == 'bed_allocation' and student[ |
---|
| 1334 | 'studycourse'].current_session != grok.getSite()[ |
---|
[8685] | 1335 | 'hostels'].accommodation_session: |
---|
[7024] | 1336 | self.flash( |
---|
[7723] | 1337 | _('Your current session does not match ' + \ |
---|
| 1338 | 'accommodation session.')) |
---|
[7024] | 1339 | self.redirect(self.url(self.context)) |
---|
| 1340 | return |
---|
[9423] | 1341 | if 'maintenance' in p_category: |
---|
| 1342 | current_session = str(student['studycourse'].current_session) |
---|
| 1343 | if not student['accommodation'].has_key(current_session): |
---|
| 1344 | self.flash(_('You have not yet booked a bed.')) |
---|
| 1345 | self.redirect(self.url(self.context)) |
---|
| 1346 | return |
---|
[7150] | 1347 | students_utils = getUtility(IStudentsUtils) |
---|
[9148] | 1348 | error, payment = students_utils.setPaymentDetails( |
---|
| 1349 | p_category, student, previous_session, previous_level) |
---|
[8595] | 1350 | if error is not None: |
---|
| 1351 | self.flash(error) |
---|
[9204] | 1352 | if 'previous session' in error: |
---|
[9148] | 1353 | self.redirect(self.url(self.context) + '/@@addpp') |
---|
| 1354 | return |
---|
[8081] | 1355 | self.redirect(self.url(self.context)) |
---|
| 1356 | return |
---|
[6869] | 1357 | self.context[payment.p_id] = payment |
---|
[7723] | 1358 | self.flash(_('Payment ticket created.')) |
---|
[6940] | 1359 | self.redirect(self.url(self.context)) |
---|
[6869] | 1360 | return |
---|
| 1361 | |
---|
[9383] | 1362 | @action(_('Cancel'), validator=NullValidator) |
---|
| 1363 | def cancel(self, **data): |
---|
| 1364 | self.redirect(self.url(self.context)) |
---|
| 1365 | |
---|
[9148] | 1366 | class PreviousPaymentAddFormPage(OnlinePaymentAddFormPage): |
---|
| 1367 | """ Page to add an online payment ticket for previous sessions |
---|
| 1368 | """ |
---|
| 1369 | grok.context(IStudentPaymentsContainer) |
---|
| 1370 | grok.name('addpp') |
---|
| 1371 | grok.require('waeup.payStudent') |
---|
| 1372 | form_fields = grok.AutoFields(IStudentPreviousPayment).select( |
---|
| 1373 | 'p_category', 'p_session', 'p_level') |
---|
| 1374 | label = _('Add previous session online payment') |
---|
| 1375 | pnav = 4 |
---|
| 1376 | |
---|
[7819] | 1377 | class OnlinePaymentDisplayFormPage(KofaDisplayFormPage): |
---|
[6869] | 1378 | """ Page to view an online payment ticket |
---|
| 1379 | """ |
---|
[6877] | 1380 | grok.context(IStudentOnlinePayment) |
---|
[6869] | 1381 | grok.name('index') |
---|
| 1382 | grok.require('waeup.viewStudent') |
---|
[6877] | 1383 | form_fields = grok.AutoFields(IStudentOnlinePayment) |
---|
[8170] | 1384 | form_fields[ |
---|
| 1385 | 'creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1386 | form_fields[ |
---|
| 1387 | 'payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6869] | 1388 | pnav = 4 |
---|
| 1389 | |
---|
| 1390 | @property |
---|
| 1391 | def label(self): |
---|
[7723] | 1392 | return _('${a}: Online Payment Ticket ${b}', mapping = { |
---|
[8736] | 1393 | 'a':self.context.student.display_fullname, |
---|
[7723] | 1394 | 'b':self.context.p_id}) |
---|
[6869] | 1395 | |
---|
[8420] | 1396 | class OnlinePaymentApprovePage(UtilityView, grok.View): |
---|
[6930] | 1397 | """ Callback view |
---|
| 1398 | """ |
---|
| 1399 | grok.context(IStudentOnlinePayment) |
---|
[8420] | 1400 | grok.name('approve') |
---|
| 1401 | grok.require('waeup.managePortal') |
---|
[6930] | 1402 | |
---|
| 1403 | def update(self): |
---|
[8428] | 1404 | success, msg, log = self.context.approveStudentPayment() |
---|
| 1405 | if log is not None: |
---|
[8735] | 1406 | self.context.writeLogMessage(self,log) |
---|
[8420] | 1407 | self.flash(msg) |
---|
[6940] | 1408 | return |
---|
[6930] | 1409 | |
---|
| 1410 | def render(self): |
---|
[6940] | 1411 | self.redirect(self.url(self.context, '@@index')) |
---|
[6930] | 1412 | return |
---|
| 1413 | |
---|
[8420] | 1414 | class OnlinePaymentFakeApprovePage(OnlinePaymentApprovePage): |
---|
| 1415 | """ Approval view for students. |
---|
| 1416 | |
---|
| 1417 | This view is used for browser tests only and |
---|
| 1418 | must be neutralized in custom pages! |
---|
| 1419 | """ |
---|
| 1420 | |
---|
| 1421 | grok.name('fake_approve') |
---|
| 1422 | grok.require('waeup.payStudent') |
---|
| 1423 | |
---|
[7459] | 1424 | class ExportPDFPaymentSlipPage(UtilityView, grok.View): |
---|
[7019] | 1425 | """Deliver a PDF slip of the context. |
---|
| 1426 | """ |
---|
| 1427 | grok.context(IStudentOnlinePayment) |
---|
[8262] | 1428 | grok.name('payment_slip.pdf') |
---|
[7019] | 1429 | grok.require('waeup.viewStudent') |
---|
| 1430 | form_fields = grok.AutoFields(IStudentOnlinePayment) |
---|
[8173] | 1431 | form_fields['creation_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 1432 | form_fields['payment_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7019] | 1433 | prefix = 'form' |
---|
[8258] | 1434 | note = None |
---|
[9375] | 1435 | omit_fields = ('password', 'suspended', 'phone', 'adm_code', 'sex') |
---|
[7019] | 1436 | |
---|
| 1437 | @property |
---|
[8262] | 1438 | def title(self): |
---|
| 1439 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1440 | return translate(_('Payment Data'), 'waeup.kofa', |
---|
| 1441 | target_language=portal_language) |
---|
| 1442 | |
---|
| 1443 | @property |
---|
[7019] | 1444 | def label(self): |
---|
[8262] | 1445 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 1446 | return translate(_('Online Payment Slip'), |
---|
| 1447 | 'waeup.kofa', target_language=portal_language) \ |
---|
| 1448 | + ' %s' % self.context.p_id |
---|
[7019] | 1449 | |
---|
| 1450 | def render(self): |
---|
[8262] | 1451 | #if self.context.p_state != 'paid': |
---|
| 1452 | # self.flash('Ticket not yet paid.') |
---|
| 1453 | # self.redirect(self.url(self.context)) |
---|
| 1454 | # return |
---|
[9141] | 1455 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 1456 | self.request, self.omit_fields) |
---|
[7150] | 1457 | students_utils = getUtility(IStudentsUtils) |
---|
[8262] | 1458 | return students_utils.renderPDF(self, 'payment_slip.pdf', |
---|
[8736] | 1459 | self.context.student, studentview, note=self.note) |
---|
[7019] | 1460 | |
---|
[6992] | 1461 | |
---|
[7819] | 1462 | class AccommodationManageFormPage(KofaEditFormPage): |
---|
[7009] | 1463 | """ Page to manage bed tickets. |
---|
[7642] | 1464 | |
---|
| 1465 | This manage form page is for both students and students officers. |
---|
[6635] | 1466 | """ |
---|
| 1467 | grok.context(IStudentAccommodation) |
---|
| 1468 | grok.name('index') |
---|
[7181] | 1469 | grok.require('waeup.handleAccommodation') |
---|
[6635] | 1470 | form_fields = grok.AutoFields(IStudentAccommodation) |
---|
[6992] | 1471 | grok.template('accommodationmanagepage') |
---|
[6642] | 1472 | pnav = 4 |
---|
[7723] | 1473 | officers_only_actions = [_('Remove selected')] |
---|
[6635] | 1474 | |
---|
| 1475 | @property |
---|
| 1476 | def label(self): |
---|
[7723] | 1477 | return _('${a}: Accommodation', |
---|
| 1478 | mapping = {'a':self.context.__parent__.display_fullname}) |
---|
[6637] | 1479 | |
---|
[6992] | 1480 | def update(self): |
---|
| 1481 | super(AccommodationManageFormPage, self).update() |
---|
| 1482 | datatable.need() |
---|
[7329] | 1483 | warning.need() |
---|
[6992] | 1484 | return |
---|
| 1485 | |
---|
[7723] | 1486 | @jsaction(_('Remove selected')) |
---|
[7009] | 1487 | def delBedTickets(self, **data): |
---|
[7240] | 1488 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[7723] | 1489 | self.flash(_('You are not allowed to remove bed tickets.')) |
---|
[7017] | 1490 | self.redirect(self.url(self.context)) |
---|
| 1491 | return |
---|
[6992] | 1492 | form = self.request.form |
---|
| 1493 | if form.has_key('val_id'): |
---|
| 1494 | child_id = form['val_id'] |
---|
| 1495 | else: |
---|
[7723] | 1496 | self.flash(_('No bed ticket selected.')) |
---|
[6992] | 1497 | self.redirect(self.url(self.context)) |
---|
| 1498 | return |
---|
| 1499 | if not isinstance(child_id, list): |
---|
| 1500 | child_id = [child_id] |
---|
| 1501 | deleted = [] |
---|
| 1502 | for id in child_id: |
---|
[7068] | 1503 | del self.context[id] |
---|
| 1504 | deleted.append(id) |
---|
[6992] | 1505 | if len(deleted): |
---|
[7723] | 1506 | self.flash(_('Successfully removed: ${a}', |
---|
| 1507 | mapping = {'a':', '.join(deleted)})) |
---|
[8735] | 1508 | self.context.writeLogMessage( |
---|
| 1509 | self,'removed: % s' % ', '.join(deleted)) |
---|
[6992] | 1510 | self.redirect(self.url(self.context)) |
---|
| 1511 | return |
---|
| 1512 | |
---|
[7009] | 1513 | @property |
---|
| 1514 | def selected_actions(self): |
---|
[7240] | 1515 | if getattr(self.request.principal, 'user_type', None) == 'student': |
---|
[7642] | 1516 | return [action for action in self.actions |
---|
| 1517 | if not action.label in self.officers_only_actions] |
---|
| 1518 | return self.actions |
---|
[7009] | 1519 | |
---|
[7819] | 1520 | class BedTicketAddPage(KofaPage): |
---|
[6992] | 1521 | """ Page to add an online payment ticket |
---|
| 1522 | """ |
---|
| 1523 | grok.context(IStudentAccommodation) |
---|
| 1524 | grok.name('add') |
---|
[7181] | 1525 | grok.require('waeup.handleAccommodation') |
---|
[6992] | 1526 | grok.template('enterpin') |
---|
[6993] | 1527 | ac_prefix = 'HOS' |
---|
[7723] | 1528 | label = _('Add bed ticket') |
---|
[6992] | 1529 | pnav = 4 |
---|
[7723] | 1530 | buttonname = _('Create bed ticket') |
---|
[6993] | 1531 | notice = '' |
---|
[9188] | 1532 | with_ac = True |
---|
[6992] | 1533 | |
---|
| 1534 | def update(self, SUBMIT=None): |
---|
[8736] | 1535 | student = self.context.student |
---|
[7150] | 1536 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1537 | acc_details = students_utils.getAccommodationDetails(student) |
---|
[8688] | 1538 | if acc_details.get('expired', False): |
---|
| 1539 | startdate = acc_details.get('startdate') |
---|
| 1540 | enddate = acc_details.get('enddate') |
---|
| 1541 | if startdate and enddate: |
---|
| 1542 | tz = getUtility(IKofaUtils).tzinfo |
---|
| 1543 | startdate = to_timezone( |
---|
| 1544 | startdate, tz).strftime("%d/%m/%Y %H:%M:%S") |
---|
| 1545 | enddate = to_timezone( |
---|
| 1546 | enddate, tz).strftime("%d/%m/%Y %H:%M:%S") |
---|
| 1547 | self.flash(_("Outside booking period: ${a} - ${b}", |
---|
| 1548 | mapping = {'a': startdate, 'b': enddate})) |
---|
| 1549 | else: |
---|
| 1550 | self.flash(_("Outside booking period.")) |
---|
| 1551 | self.redirect(self.url(self.context)) |
---|
| 1552 | return |
---|
[7369] | 1553 | if not acc_details: |
---|
[7723] | 1554 | self.flash(_("Your data are incomplete.")) |
---|
[7369] | 1555 | self.redirect(self.url(self.context)) |
---|
| 1556 | return |
---|
[6996] | 1557 | if not student.state in acc_details['allowed_states']: |
---|
[7723] | 1558 | self.flash(_("You are in the wrong registration state.")) |
---|
[6992] | 1559 | self.redirect(self.url(self.context)) |
---|
| 1560 | return |
---|
[7642] | 1561 | if student['studycourse'].current_session != acc_details[ |
---|
| 1562 | 'booking_session']: |
---|
[7061] | 1563 | self.flash( |
---|
[7723] | 1564 | _('Your current session does not match accommodation session.')) |
---|
[7061] | 1565 | self.redirect(self.url(self.context)) |
---|
| 1566 | return |
---|
| 1567 | if str(acc_details['booking_session']) in self.context.keys(): |
---|
[7642] | 1568 | self.flash( |
---|
[7723] | 1569 | _('You already booked a bed space in current ' \ |
---|
| 1570 | + 'accommodation session.')) |
---|
[7004] | 1571 | self.redirect(self.url(self.context)) |
---|
| 1572 | return |
---|
[9188] | 1573 | if self.with_ac: |
---|
| 1574 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1575 | self.ac_number = self.request.form.get('ac_number', None) |
---|
[6992] | 1576 | if SUBMIT is None: |
---|
| 1577 | return |
---|
[9188] | 1578 | if self.with_ac: |
---|
| 1579 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1580 | code = get_access_code(pin) |
---|
| 1581 | if not code: |
---|
| 1582 | self.flash(_('Activation code is invalid.')) |
---|
| 1583 | return |
---|
[7060] | 1584 | # Search and book bed |
---|
[6997] | 1585 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 1586 | entries = cat.searchResults( |
---|
[7003] | 1587 | owner=(student.student_id,student.student_id)) |
---|
| 1588 | if len(entries): |
---|
[9188] | 1589 | # If bed space has been manually allocated use this bed |
---|
[7003] | 1590 | bed = [entry for entry in entries][0] |
---|
[7060] | 1591 | else: |
---|
| 1592 | # else search for other available beds |
---|
| 1593 | entries = cat.searchResults( |
---|
| 1594 | bed_type=(acc_details['bt'],acc_details['bt'])) |
---|
| 1595 | available_beds = [ |
---|
| 1596 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
| 1597 | if available_beds: |
---|
[7150] | 1598 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1599 | bed = students_utils.selectBed(available_beds) |
---|
[7060] | 1600 | bed.bookBed(student.student_id) |
---|
| 1601 | else: |
---|
[7723] | 1602 | self.flash(_('There is no free bed in your category ${a}.', |
---|
| 1603 | mapping = {'a':acc_details['bt']})) |
---|
[7060] | 1604 | return |
---|
[9188] | 1605 | if self.with_ac: |
---|
| 1606 | # Mark pin as used (this also fires a pin related transition) |
---|
| 1607 | if code.state == USED: |
---|
| 1608 | self.flash(_('Activation code has already been used.')) |
---|
[6992] | 1609 | return |
---|
[9188] | 1610 | else: |
---|
| 1611 | comment = _(u'invalidated') |
---|
| 1612 | # Here we know that the ac is in state initialized so we do not |
---|
| 1613 | # expect an exception, but the owner might be different |
---|
| 1614 | if not invalidate_accesscode( |
---|
| 1615 | pin,comment,self.context.student.student_id): |
---|
| 1616 | self.flash(_('You are not the owner of this access code.')) |
---|
| 1617 | return |
---|
[7060] | 1618 | # Create bed ticket |
---|
[6992] | 1619 | bedticket = createObject(u'waeup.BedTicket') |
---|
[9189] | 1620 | if self.with_ac: |
---|
| 1621 | bedticket.booking_code = pin |
---|
[6994] | 1622 | bedticket.booking_session = acc_details['booking_session'] |
---|
[6996] | 1623 | bedticket.bed_type = acc_details['bt'] |
---|
[7006] | 1624 | bedticket.bed = bed |
---|
[6996] | 1625 | hall_title = bed.__parent__.hostel_name |
---|
[9199] | 1626 | coordinates = bed.coordinates[1:] |
---|
[6996] | 1627 | block, room_nr, bed_nr = coordinates |
---|
[7723] | 1628 | bc = _('${a}, Block ${b}, Room ${c}, Bed ${d} (${e})', mapping = { |
---|
| 1629 | 'a':hall_title, 'b':block, |
---|
| 1630 | 'c':room_nr, 'd':bed_nr, |
---|
| 1631 | 'e':bed.bed_type}) |
---|
[7819] | 1632 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7723] | 1633 | bedticket.bed_coordinates = translate( |
---|
[7811] | 1634 | bc, 'waeup.kofa',target_language=portal_language) |
---|
[9423] | 1635 | self.context.addBedTicket(bedticket) |
---|
[9411] | 1636 | self.context.writeLogMessage(self, 'booked: %s' % bed.bed_id) |
---|
[7723] | 1637 | self.flash(_('Bed ticket created and bed booked: ${a}', |
---|
| 1638 | mapping = {'a':bedticket.bed_coordinates})) |
---|
[6992] | 1639 | self.redirect(self.url(self.context)) |
---|
| 1640 | return |
---|
| 1641 | |
---|
[7819] | 1642 | class BedTicketDisplayFormPage(KofaDisplayFormPage): |
---|
[6994] | 1643 | """ Page to display bed tickets |
---|
| 1644 | """ |
---|
| 1645 | grok.context(IBedTicket) |
---|
| 1646 | grok.name('index') |
---|
[7181] | 1647 | grok.require('waeup.handleAccommodation') |
---|
[6994] | 1648 | form_fields = grok.AutoFields(IBedTicket) |
---|
[9201] | 1649 | form_fields['booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6994] | 1650 | pnav = 4 |
---|
| 1651 | |
---|
| 1652 | @property |
---|
| 1653 | def label(self): |
---|
[7723] | 1654 | return _('Bed Ticket for Session ${a}', |
---|
| 1655 | mapping = {'a':self.context.getSessionString()}) |
---|
[6994] | 1656 | |
---|
[7459] | 1657 | class ExportPDFBedTicketSlipPage(UtilityView, grok.View): |
---|
[7027] | 1658 | """Deliver a PDF slip of the context. |
---|
| 1659 | """ |
---|
| 1660 | grok.context(IBedTicket) |
---|
| 1661 | grok.name('bed_allocation.pdf') |
---|
[7181] | 1662 | grok.require('waeup.handleAccommodation') |
---|
[7027] | 1663 | form_fields = grok.AutoFields(IBedTicket) |
---|
[8173] | 1664 | form_fields['booking_date'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[7027] | 1665 | prefix = 'form' |
---|
[9375] | 1666 | omit_fields = ('password', 'suspended', 'phone', 'adm_code', 'sex') |
---|
[7027] | 1667 | |
---|
| 1668 | @property |
---|
[7723] | 1669 | def title(self): |
---|
[7819] | 1670 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7811] | 1671 | return translate(_('Bed Allocation Data'), 'waeup.kofa', |
---|
[7723] | 1672 | target_language=portal_language) |
---|
| 1673 | |
---|
| 1674 | @property |
---|
[7027] | 1675 | def label(self): |
---|
[7819] | 1676 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[9201] | 1677 | #return translate(_('Bed Allocation: '), |
---|
| 1678 | # 'waeup.kofa', target_language=portal_language) \ |
---|
| 1679 | # + ' %s' % self.context.bed_coordinates |
---|
| 1680 | return translate(_('Bed Allocation Slip'), |
---|
[7811] | 1681 | 'waeup.kofa', target_language=portal_language) \ |
---|
[9201] | 1682 | + ' %s' % self.context.getSessionString() |
---|
[7027] | 1683 | |
---|
| 1684 | def render(self): |
---|
[9141] | 1685 | studentview = StudentBasePDFFormPage(self.context.student, |
---|
[9375] | 1686 | self.request, self.omit_fields) |
---|
[7150] | 1687 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1688 | return students_utils.renderPDF( |
---|
[7318] | 1689 | self, 'bed_allocation.pdf', |
---|
[8736] | 1690 | self.context.student, studentview) |
---|
[7027] | 1691 | |
---|
[7459] | 1692 | class BedTicketRelocationPage(UtilityView, grok.View): |
---|
[7015] | 1693 | """ Callback view |
---|
| 1694 | """ |
---|
| 1695 | grok.context(IBedTicket) |
---|
| 1696 | grok.name('relocate') |
---|
| 1697 | grok.require('waeup.manageHostels') |
---|
| 1698 | |
---|
[7059] | 1699 | # Relocate student if student parameters have changed or the bed_type |
---|
| 1700 | # of the bed has changed |
---|
[7015] | 1701 | def update(self): |
---|
[8736] | 1702 | student = self.context.student |
---|
[7150] | 1703 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1704 | acc_details = students_utils.getAccommodationDetails(student) |
---|
[7068] | 1705 | if self.context.bed != None and \ |
---|
| 1706 | 'reserved' in self.context.bed.bed_type: |
---|
[7723] | 1707 | self.flash(_("Students in reserved beds can't be relocated.")) |
---|
[7068] | 1708 | self.redirect(self.url(self.context)) |
---|
| 1709 | return |
---|
[7059] | 1710 | if acc_details['bt'] == self.context.bed_type and \ |
---|
[7068] | 1711 | self.context.bed != None and \ |
---|
[7059] | 1712 | self.context.bed.bed_type == self.context.bed_type: |
---|
[7723] | 1713 | self.flash(_("Student can't be relocated.")) |
---|
[7068] | 1714 | self.redirect(self.url(self.context)) |
---|
[7015] | 1715 | return |
---|
[7068] | 1716 | # Search a bed |
---|
[7015] | 1717 | cat = queryUtility(ICatalog, name='beds_catalog', default=None) |
---|
| 1718 | entries = cat.searchResults( |
---|
[7068] | 1719 | owner=(student.student_id,student.student_id)) |
---|
| 1720 | if len(entries) and self.context.bed == None: |
---|
| 1721 | # If booking has been cancelled but other bed space has been |
---|
| 1722 | # manually allocated after cancellation use this bed |
---|
| 1723 | new_bed = [entry for entry in entries][0] |
---|
| 1724 | else: |
---|
| 1725 | # Search for other available beds |
---|
| 1726 | entries = cat.searchResults( |
---|
| 1727 | bed_type=(acc_details['bt'],acc_details['bt'])) |
---|
| 1728 | available_beds = [ |
---|
| 1729 | entry for entry in entries if entry.owner == NOT_OCCUPIED] |
---|
| 1730 | if available_beds: |
---|
[7150] | 1731 | students_utils = getUtility(IStudentsUtils) |
---|
[7186] | 1732 | new_bed = students_utils.selectBed(available_beds) |
---|
[7068] | 1733 | new_bed.bookBed(student.student_id) |
---|
| 1734 | else: |
---|
[7723] | 1735 | self.flash(_('There is no free bed in your category ${a}.', |
---|
| 1736 | mapping = {'a':acc_details['bt']})) |
---|
[7068] | 1737 | self.redirect(self.url(self.context)) |
---|
| 1738 | return |
---|
[7642] | 1739 | # Release old bed if exists |
---|
[7068] | 1740 | if self.context.bed != None: |
---|
| 1741 | self.context.bed.owner = NOT_OCCUPIED |
---|
| 1742 | notify(grok.ObjectModifiedEvent(self.context.bed)) |
---|
[7015] | 1743 | # Alocate new bed |
---|
| 1744 | self.context.bed_type = acc_details['bt'] |
---|
[7068] | 1745 | self.context.bed = new_bed |
---|
| 1746 | hall_title = new_bed.__parent__.hostel_name |
---|
[9199] | 1747 | coordinates = new_bed.coordinates[1:] |
---|
[7015] | 1748 | block, room_nr, bed_nr = coordinates |
---|
[7723] | 1749 | bc = _('${a}, Block ${b}, Room ${c}, Bed ${d} (${e})', mapping = { |
---|
| 1750 | 'a':hall_title, 'b':block, |
---|
| 1751 | 'c':room_nr, 'd':bed_nr, |
---|
| 1752 | 'e':new_bed.bed_type}) |
---|
[7819] | 1753 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
[7723] | 1754 | self.context.bed_coordinates = translate( |
---|
[7811] | 1755 | bc, 'waeup.kofa',target_language=portal_language) |
---|
[9411] | 1756 | self.context.writeLogMessage(self, 'relocated: %s' % new_bed.bed_id) |
---|
[7723] | 1757 | self.flash(_('Student relocated: ${a}', |
---|
| 1758 | mapping = {'a':self.context.bed_coordinates})) |
---|
[7015] | 1759 | self.redirect(self.url(self.context)) |
---|
| 1760 | return |
---|
| 1761 | |
---|
| 1762 | def render(self): |
---|
| 1763 | return |
---|
| 1764 | |
---|
[7819] | 1765 | class StudentHistoryPage(KofaPage): |
---|
[6637] | 1766 | """ Page to display student clearance data |
---|
| 1767 | """ |
---|
| 1768 | grok.context(IStudent) |
---|
| 1769 | grok.name('history') |
---|
[6660] | 1770 | grok.require('waeup.viewStudent') |
---|
[6637] | 1771 | grok.template('studenthistory') |
---|
[6642] | 1772 | pnav = 4 |
---|
[6637] | 1773 | |
---|
| 1774 | @property |
---|
| 1775 | def label(self): |
---|
[7723] | 1776 | return _('${a}: History', mapping = {'a':self.context.display_fullname}) |
---|
[6694] | 1777 | |
---|
| 1778 | # Pages for students only |
---|
| 1779 | |
---|
[7819] | 1780 | class StudentBaseEditFormPage(KofaEditFormPage): |
---|
[7133] | 1781 | """ View to edit student base data |
---|
| 1782 | """ |
---|
| 1783 | grok.context(IStudent) |
---|
| 1784 | grok.name('edit_base') |
---|
| 1785 | grok.require('waeup.handleStudent') |
---|
| 1786 | form_fields = grok.AutoFields(IStudentBase).select( |
---|
| 1787 | 'email', 'phone') |
---|
[7723] | 1788 | label = _('Edit base data') |
---|
[7133] | 1789 | pnav = 4 |
---|
| 1790 | |
---|
[7723] | 1791 | @action(_('Save'), style='primary') |
---|
[7133] | 1792 | def save(self, **data): |
---|
| 1793 | msave(self, **data) |
---|
| 1794 | return |
---|
| 1795 | |
---|
[7819] | 1796 | class StudentChangePasswordPage(KofaEditFormPage): |
---|
[7144] | 1797 | """ View to manage student base data |
---|
[6756] | 1798 | """ |
---|
| 1799 | grok.context(IStudent) |
---|
[7114] | 1800 | grok.name('change_password') |
---|
[6694] | 1801 | grok.require('waeup.handleStudent') |
---|
[7144] | 1802 | grok.template('change_password') |
---|
[7723] | 1803 | label = _('Change password') |
---|
[6694] | 1804 | pnav = 4 |
---|
| 1805 | |
---|
[7723] | 1806 | @action(_('Save'), style='primary') |
---|
[7144] | 1807 | def save(self, **data): |
---|
| 1808 | form = self.request.form |
---|
| 1809 | password = form.get('change_password', None) |
---|
| 1810 | password_ctl = form.get('change_password_repeat', None) |
---|
| 1811 | if password: |
---|
[7147] | 1812 | validator = getUtility(IPasswordValidator) |
---|
| 1813 | errors = validator.validate_password(password, password_ctl) |
---|
| 1814 | if not errors: |
---|
| 1815 | IUserAccount(self.context).setPassword(password) |
---|
[8735] | 1816 | self.context.writeLogMessage(self, 'saved: password') |
---|
[7723] | 1817 | self.flash(_('Password changed.')) |
---|
[6756] | 1818 | else: |
---|
[7147] | 1819 | self.flash( ' '.join(errors)) |
---|
[6756] | 1820 | return |
---|
| 1821 | |
---|
[7819] | 1822 | class StudentFilesUploadPage(KofaPage): |
---|
[7114] | 1823 | """ View to upload files by student |
---|
| 1824 | """ |
---|
| 1825 | grok.context(IStudent) |
---|
| 1826 | grok.name('change_portrait') |
---|
[7127] | 1827 | grok.require('waeup.uploadStudentFile') |
---|
[7114] | 1828 | grok.template('filesuploadpage') |
---|
[7723] | 1829 | label = _('Upload portrait') |
---|
[7114] | 1830 | pnav = 4 |
---|
| 1831 | |
---|
[7133] | 1832 | def update(self): |
---|
[8736] | 1833 | if self.context.student.state != ADMITTED: |
---|
[7145] | 1834 | emit_lock_message(self) |
---|
[7133] | 1835 | return |
---|
| 1836 | super(StudentFilesUploadPage, self).update() |
---|
| 1837 | return |
---|
| 1838 | |
---|
[7819] | 1839 | class StartClearancePage(KofaPage): |
---|
[6770] | 1840 | grok.context(IStudent) |
---|
| 1841 | grok.name('start_clearance') |
---|
| 1842 | grok.require('waeup.handleStudent') |
---|
| 1843 | grok.template('enterpin') |
---|
[7723] | 1844 | label = _('Start clearance') |
---|
[6770] | 1845 | ac_prefix = 'CLR' |
---|
| 1846 | notice = '' |
---|
| 1847 | pnav = 4 |
---|
[7723] | 1848 | buttonname = _('Start clearance now') |
---|
[6770] | 1849 | |
---|
[7133] | 1850 | @property |
---|
| 1851 | def all_required_fields_filled(self): |
---|
| 1852 | if self.context.email and self.context.phone: |
---|
| 1853 | return True |
---|
| 1854 | return False |
---|
| 1855 | |
---|
| 1856 | @property |
---|
| 1857 | def portrait_uploaded(self): |
---|
| 1858 | store = getUtility(IExtFileStore) |
---|
| 1859 | if store.getFileByContext(self.context, attr=u'passport.jpg'): |
---|
| 1860 | return True |
---|
| 1861 | return False |
---|
| 1862 | |
---|
[6770] | 1863 | def update(self, SUBMIT=None): |
---|
[7671] | 1864 | if not self.context.state == ADMITTED: |
---|
[7745] | 1865 | self.flash(_("Wrong state")) |
---|
[6936] | 1866 | self.redirect(self.url(self.context)) |
---|
| 1867 | return |
---|
[7133] | 1868 | if not self.portrait_uploaded: |
---|
[7723] | 1869 | self.flash(_("No portrait uploaded.")) |
---|
[7133] | 1870 | self.redirect(self.url(self.context, 'change_portrait')) |
---|
| 1871 | return |
---|
| 1872 | if not self.all_required_fields_filled: |
---|
[7723] | 1873 | self.flash(_("Not all required fields filled.")) |
---|
[7133] | 1874 | self.redirect(self.url(self.context, 'edit_base')) |
---|
| 1875 | return |
---|
[6770] | 1876 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1877 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1878 | |
---|
| 1879 | if SUBMIT is None: |
---|
| 1880 | return |
---|
| 1881 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 1882 | code = get_access_code(pin) |
---|
| 1883 | if not code: |
---|
[7723] | 1884 | self.flash(_('Activation code is invalid.')) |
---|
[6770] | 1885 | return |
---|
| 1886 | if code.state == USED: |
---|
[7723] | 1887 | self.flash(_('Activation code has already been used.')) |
---|
[6770] | 1888 | return |
---|
[8974] | 1889 | # Mark pin as used (this also fires a pin related transition) |
---|
| 1890 | # and fire transition start_clearance |
---|
| 1891 | comment = _(u"invalidated") |
---|
| 1892 | # Here we know that the ac is in state initialized so we do not |
---|
| 1893 | # expect an exception, but the owner might be different |
---|
| 1894 | if not invalidate_accesscode(pin, comment, self.context.student_id): |
---|
| 1895 | self.flash(_('You are not the owner of this access code.')) |
---|
| 1896 | return |
---|
| 1897 | self.context.clr_code = pin |
---|
[6770] | 1898 | IWorkflowInfo(self.context).fireTransition('start_clearance') |
---|
[7723] | 1899 | self.flash(_('Clearance process has been started.')) |
---|
[6770] | 1900 | self.redirect(self.url(self.context,'cedit')) |
---|
| 1901 | return |
---|
| 1902 | |
---|
[6695] | 1903 | class StudentClearanceEditFormPage(StudentClearanceManageFormPage): |
---|
| 1904 | """ View to edit student clearance data by student |
---|
| 1905 | """ |
---|
| 1906 | grok.context(IStudent) |
---|
| 1907 | grok.name('cedit') |
---|
| 1908 | grok.require('waeup.handleStudent') |
---|
[7723] | 1909 | label = _('Edit clearance data') |
---|
[6718] | 1910 | |
---|
[7993] | 1911 | @property |
---|
| 1912 | def form_fields(self): |
---|
[8472] | 1913 | if self.context.is_postgrad: |
---|
[8974] | 1914 | form_fields = grok.AutoFields(IPGStudentClearance).omit( |
---|
[8977] | 1915 | 'clearance_locked', 'clr_code') |
---|
[7993] | 1916 | else: |
---|
[8974] | 1917 | form_fields = grok.AutoFields(IUGStudentClearance).omit( |
---|
[8977] | 1918 | 'clearance_locked', 'clr_code') |
---|
[7993] | 1919 | return form_fields |
---|
| 1920 | |
---|
[6718] | 1921 | def update(self): |
---|
| 1922 | if self.context.clearance_locked: |
---|
[7145] | 1923 | emit_lock_message(self) |
---|
[6718] | 1924 | return |
---|
| 1925 | return super(StudentClearanceEditFormPage, self).update() |
---|
[6719] | 1926 | |
---|
[7723] | 1927 | @action(_('Save'), style='primary') |
---|
[6722] | 1928 | def save(self, **data): |
---|
| 1929 | self.applyData(self.context, **data) |
---|
[7723] | 1930 | self.flash(_('Clearance form has been saved.')) |
---|
[6722] | 1931 | return |
---|
| 1932 | |
---|
[7253] | 1933 | def dataNotComplete(self): |
---|
[7642] | 1934 | """To be implemented in the customization package. |
---|
| 1935 | """ |
---|
[7253] | 1936 | return False |
---|
| 1937 | |
---|
[7723] | 1938 | @action(_('Save and request clearance'), style='primary') |
---|
[7186] | 1939 | def requestClearance(self, **data): |
---|
[6722] | 1940 | self.applyData(self.context, **data) |
---|
[7253] | 1941 | if self.dataNotComplete(): |
---|
| 1942 | self.flash(self.dataNotComplete()) |
---|
| 1943 | return |
---|
[7723] | 1944 | self.flash(_('Clearance form has been saved.')) |
---|
[9021] | 1945 | if self.context.clr_code: |
---|
| 1946 | self.redirect(self.url(self.context, 'request_clearance')) |
---|
| 1947 | else: |
---|
| 1948 | # We bypass the request_clearance page if student |
---|
| 1949 | # has been imported in state 'clearance started' and |
---|
| 1950 | # no clr_code was entered before. |
---|
| 1951 | state = IWorkflowState(self.context).getState() |
---|
| 1952 | if state != CLEARANCE: |
---|
| 1953 | # This shouldn't happen, but the application officer |
---|
| 1954 | # might have forgotten to lock the form after changing the state |
---|
| 1955 | self.flash(_('This form cannot be submitted. Wrong state!')) |
---|
| 1956 | return |
---|
| 1957 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
| 1958 | self.flash(_('Clearance has been requested.')) |
---|
| 1959 | self.redirect(self.url(self.context)) |
---|
[6722] | 1960 | return |
---|
| 1961 | |
---|
[7819] | 1962 | class RequestClearancePage(KofaPage): |
---|
[6769] | 1963 | grok.context(IStudent) |
---|
| 1964 | grok.name('request_clearance') |
---|
| 1965 | grok.require('waeup.handleStudent') |
---|
| 1966 | grok.template('enterpin') |
---|
[7723] | 1967 | label = _('Request clearance') |
---|
| 1968 | notice = _('Enter the CLR access code used for starting clearance.') |
---|
[6769] | 1969 | ac_prefix = 'CLR' |
---|
| 1970 | pnav = 4 |
---|
[7723] | 1971 | buttonname = _('Request clearance now') |
---|
[6769] | 1972 | |
---|
| 1973 | def update(self, SUBMIT=None): |
---|
| 1974 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 1975 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 1976 | if SUBMIT is None: |
---|
| 1977 | return |
---|
| 1978 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
[9021] | 1979 | if self.context.clr_code and self.context.clr_code != pin: |
---|
[7723] | 1980 | self.flash(_("This isn't your CLR access code.")) |
---|
[6769] | 1981 | return |
---|
| 1982 | state = IWorkflowState(self.context).getState() |
---|
| 1983 | if state != CLEARANCE: |
---|
[9021] | 1984 | # This shouldn't happen, but the application officer |
---|
| 1985 | # might have forgotten to lock the form after changing the state |
---|
[7723] | 1986 | self.flash(_('This form cannot be submitted. Wrong state!')) |
---|
[6769] | 1987 | return |
---|
| 1988 | IWorkflowInfo(self.context).fireTransition('request_clearance') |
---|
[7723] | 1989 | self.flash(_('Clearance has been requested.')) |
---|
[6769] | 1990 | self.redirect(self.url(self.context)) |
---|
[6789] | 1991 | return |
---|
[6806] | 1992 | |
---|
[8471] | 1993 | class StartSessionPage(KofaPage): |
---|
[6944] | 1994 | grok.context(IStudentStudyCourse) |
---|
[8471] | 1995 | grok.name('start_session') |
---|
[6944] | 1996 | grok.require('waeup.handleStudent') |
---|
| 1997 | grok.template('enterpin') |
---|
[8471] | 1998 | label = _('Start session') |
---|
[6944] | 1999 | ac_prefix = 'SFE' |
---|
| 2000 | notice = '' |
---|
| 2001 | pnav = 4 |
---|
[8471] | 2002 | buttonname = _('Start now') |
---|
[6944] | 2003 | |
---|
| 2004 | def update(self, SUBMIT=None): |
---|
[9139] | 2005 | if not self.context.is_current: |
---|
| 2006 | emit_lock_message(self) |
---|
| 2007 | return |
---|
| 2008 | super(StartSessionPage, self).update() |
---|
[8471] | 2009 | if not self.context.next_session_allowed: |
---|
| 2010 | self.flash(_("You are not entitled to start session.")) |
---|
[6944] | 2011 | self.redirect(self.url(self.context)) |
---|
| 2012 | return |
---|
| 2013 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2014 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 2015 | |
---|
| 2016 | if SUBMIT is None: |
---|
| 2017 | return |
---|
| 2018 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2019 | code = get_access_code(pin) |
---|
| 2020 | if not code: |
---|
[7723] | 2021 | self.flash(_('Activation code is invalid.')) |
---|
[6944] | 2022 | return |
---|
| 2023 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2024 | if code.state == USED: |
---|
[7723] | 2025 | self.flash(_('Activation code has already been used.')) |
---|
[6944] | 2026 | return |
---|
| 2027 | else: |
---|
[7723] | 2028 | comment = _(u"invalidated") |
---|
[6944] | 2029 | # Here we know that the ac is in state initialized so we do not |
---|
[8471] | 2030 | # expect an error, but the owner might be different |
---|
[6944] | 2031 | if not invalidate_accesscode( |
---|
[8736] | 2032 | pin,comment,self.context.student.student_id): |
---|
[7723] | 2033 | self.flash(_('You are not the owner of this access code.')) |
---|
[6944] | 2034 | return |
---|
[8736] | 2035 | if self.context.student.state == CLEARED: |
---|
| 2036 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[6944] | 2037 | 'pay_first_school_fee') |
---|
[8736] | 2038 | elif self.context.student.state == RETURNING: |
---|
| 2039 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[6944] | 2040 | 'pay_school_fee') |
---|
[8736] | 2041 | elif self.context.student.state == PAID: |
---|
| 2042 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[8471] | 2043 | 'pay_pg_fee') |
---|
| 2044 | self.flash(_('Session started.')) |
---|
[6944] | 2045 | self.redirect(self.url(self.context)) |
---|
| 2046 | return |
---|
| 2047 | |
---|
[7819] | 2048 | class AddStudyLevelFormPage(KofaEditFormPage): |
---|
[6806] | 2049 | """ Page for students to add current study levels |
---|
| 2050 | """ |
---|
| 2051 | grok.context(IStudentStudyCourse) |
---|
| 2052 | grok.name('add') |
---|
| 2053 | grok.require('waeup.handleStudent') |
---|
| 2054 | grok.template('studyleveladdpage') |
---|
| 2055 | form_fields = grok.AutoFields(IStudentStudyCourse) |
---|
| 2056 | pnav = 4 |
---|
| 2057 | |
---|
| 2058 | @property |
---|
| 2059 | def label(self): |
---|
| 2060 | studylevelsource = StudyLevelSource().factory |
---|
| 2061 | code = self.context.current_level |
---|
| 2062 | title = studylevelsource.getTitle(self.context, code) |
---|
[7723] | 2063 | return _('Add current level ${a}', mapping = {'a':title}) |
---|
[6806] | 2064 | |
---|
| 2065 | def update(self): |
---|
[9139] | 2066 | if not self.context.is_current: |
---|
| 2067 | emit_lock_message(self) |
---|
| 2068 | return |
---|
[8736] | 2069 | if self.context.student.state != PAID: |
---|
[7145] | 2070 | emit_lock_message(self) |
---|
[6806] | 2071 | return |
---|
| 2072 | super(AddStudyLevelFormPage, self).update() |
---|
| 2073 | return |
---|
| 2074 | |
---|
[7723] | 2075 | @action(_('Create course list now'), style='primary') |
---|
[6806] | 2076 | def addStudyLevel(self, **data): |
---|
[8323] | 2077 | studylevel = createObject(u'waeup.StudentStudyLevel') |
---|
[6806] | 2078 | studylevel.level = self.context.current_level |
---|
| 2079 | studylevel.level_session = self.context.current_session |
---|
| 2080 | try: |
---|
| 2081 | self.context.addStudentStudyLevel( |
---|
| 2082 | self.context.certificate,studylevel) |
---|
| 2083 | except KeyError: |
---|
[7723] | 2084 | self.flash(_('This level exists.')) |
---|
[6806] | 2085 | self.redirect(self.url(self.context)) |
---|
| 2086 | return |
---|
[6808] | 2087 | |
---|
[7819] | 2088 | class StudyLevelEditFormPage(KofaEditFormPage): |
---|
[6808] | 2089 | """ Page to edit the student study level data by students |
---|
| 2090 | """ |
---|
| 2091 | grok.context(IStudentStudyLevel) |
---|
| 2092 | grok.name('edit') |
---|
| 2093 | grok.require('waeup.handleStudent') |
---|
| 2094 | grok.template('studyleveleditpage') |
---|
| 2095 | form_fields = grok.AutoFields(IStudentStudyLevel).omit( |
---|
| 2096 | 'level_session', 'level_verdict') |
---|
| 2097 | pnav = 4 |
---|
[8642] | 2098 | max_credits = 50 |
---|
[6808] | 2099 | |
---|
| 2100 | def update(self): |
---|
[9139] | 2101 | if not self.context.__parent__.is_current: |
---|
| 2102 | emit_lock_message(self) |
---|
| 2103 | return |
---|
[9257] | 2104 | if self.context.student.state != PAID or \ |
---|
| 2105 | not self.context.is_current_level: |
---|
[7539] | 2106 | emit_lock_message(self) |
---|
| 2107 | return |
---|
[6808] | 2108 | super(StudyLevelEditFormPage, self).update() |
---|
| 2109 | datatable.need() |
---|
[7329] | 2110 | warning.need() |
---|
[6808] | 2111 | return |
---|
| 2112 | |
---|
| 2113 | @property |
---|
| 2114 | def label(self): |
---|
[7833] | 2115 | # Here we know that the cookie has been set |
---|
| 2116 | lang = self.request.cookies.get('kofa.language') |
---|
[7811] | 2117 | level_title = translate(self.context.level_title, 'waeup.kofa', |
---|
[7723] | 2118 | target_language=lang) |
---|
[8920] | 2119 | return _('Edit course list of ${a}', |
---|
[7723] | 2120 | mapping = {'a':level_title}) |
---|
[6808] | 2121 | |
---|
| 2122 | @property |
---|
| 2123 | def total_credits(self): |
---|
| 2124 | total_credits = 0 |
---|
| 2125 | for key, val in self.context.items(): |
---|
| 2126 | total_credits += val.credits |
---|
| 2127 | return total_credits |
---|
| 2128 | |
---|
[8921] | 2129 | @property |
---|
| 2130 | def translated_values(self): |
---|
| 2131 | return translated_values(self) |
---|
| 2132 | |
---|
[7723] | 2133 | @action(_('Add course ticket')) |
---|
[6808] | 2134 | def addCourseTicket(self, **data): |
---|
| 2135 | self.redirect(self.url(self.context, 'ctadd')) |
---|
| 2136 | |
---|
[9280] | 2137 | def _delCourseTicket(self, **data): |
---|
[6808] | 2138 | form = self.request.form |
---|
| 2139 | if form.has_key('val_id'): |
---|
| 2140 | child_id = form['val_id'] |
---|
| 2141 | else: |
---|
[7723] | 2142 | self.flash(_('No ticket selected.')) |
---|
[6808] | 2143 | self.redirect(self.url(self.context, '@@edit')) |
---|
| 2144 | return |
---|
| 2145 | if not isinstance(child_id, list): |
---|
| 2146 | child_id = [child_id] |
---|
| 2147 | deleted = [] |
---|
| 2148 | for id in child_id: |
---|
[6940] | 2149 | # Students are not allowed to remove core tickets |
---|
[7665] | 2150 | if not self.context[id].mandatory: |
---|
[7723] | 2151 | del self.context[id] |
---|
| 2152 | deleted.append(id) |
---|
[6808] | 2153 | if len(deleted): |
---|
[7723] | 2154 | self.flash(_('Successfully removed: ${a}', |
---|
| 2155 | mapping = {'a':', '.join(deleted)})) |
---|
[9332] | 2156 | self.context.writeLogMessage( |
---|
| 2157 | self,'removed: %s' % ', '.join(deleted)) |
---|
[6808] | 2158 | self.redirect(self.url(self.context, u'@@edit')) |
---|
| 2159 | return |
---|
| 2160 | |
---|
[9280] | 2161 | @jsaction(_('Remove selected tickets')) |
---|
| 2162 | def delCourseTicket(self, **data): |
---|
| 2163 | self._delCourseTicket(**data) |
---|
| 2164 | return |
---|
| 2165 | |
---|
| 2166 | def _registerCourses(self, **data): |
---|
[9252] | 2167 | if self.context.student.is_postgrad: |
---|
| 2168 | self.flash(_( |
---|
| 2169 | "You are a postgraduate student, " |
---|
| 2170 | "your course list can't bee registered.")) |
---|
| 2171 | self.redirect(self.url(self.context)) |
---|
| 2172 | return |
---|
[8642] | 2173 | if self.total_credits > self.max_credits: |
---|
| 2174 | self.flash(_('Maximum credits of ${a} exceeded.', |
---|
| 2175 | mapping = {'a':self.max_credits})) |
---|
| 2176 | return |
---|
[8736] | 2177 | IWorkflowInfo(self.context.student).fireTransition( |
---|
[7642] | 2178 | 'register_courses') |
---|
[7723] | 2179 | self.flash(_('Course list has been registered.')) |
---|
[6810] | 2180 | self.redirect(self.url(self.context)) |
---|
| 2181 | return |
---|
| 2182 | |
---|
[9280] | 2183 | @action(_('Register course list'), style='primary') |
---|
| 2184 | def registerCourses(self, **data): |
---|
| 2185 | self._registerCourses(**data) |
---|
| 2186 | return |
---|
| 2187 | |
---|
| 2188 | |
---|
[6808] | 2189 | class CourseTicketAddFormPage2(CourseTicketAddFormPage): |
---|
| 2190 | """Add a course ticket by student. |
---|
| 2191 | """ |
---|
| 2192 | grok.name('ctadd') |
---|
| 2193 | grok.require('waeup.handleStudent') |
---|
[9420] | 2194 | form_fields = grok.AutoFields(ICourseTicketAdd) |
---|
[6808] | 2195 | |
---|
[7539] | 2196 | def update(self): |
---|
[9257] | 2197 | if self.context.student.state != PAID or \ |
---|
| 2198 | not self.context.is_current_level: |
---|
[7539] | 2199 | emit_lock_message(self) |
---|
| 2200 | return |
---|
| 2201 | super(CourseTicketAddFormPage2, self).update() |
---|
| 2202 | return |
---|
| 2203 | |
---|
[7723] | 2204 | @action(_('Add course ticket')) |
---|
[6808] | 2205 | def addCourseTicket(self, **data): |
---|
[7642] | 2206 | # Safety belt |
---|
[8736] | 2207 | if self.context.student.state != PAID: |
---|
[7539] | 2208 | return |
---|
[8325] | 2209 | ticket = createObject(u'waeup.CourseTicket') |
---|
[6808] | 2210 | course = data['course'] |
---|
| 2211 | ticket.automatic = False |
---|
[8920] | 2212 | ticket.carry_over = False |
---|
[6808] | 2213 | try: |
---|
[8920] | 2214 | self.context.addCourseTicket(ticket, course) |
---|
[6808] | 2215 | except KeyError: |
---|
[7723] | 2216 | self.flash(_('The ticket exists.')) |
---|
[6808] | 2217 | return |
---|
[7723] | 2218 | self.flash(_('Successfully added ${a}.', |
---|
| 2219 | mapping = {'a':ticket.code})) |
---|
[6808] | 2220 | self.redirect(self.url(self.context, u'@@edit')) |
---|
| 2221 | return |
---|
[7369] | 2222 | |
---|
| 2223 | |
---|
[7819] | 2224 | class SetPasswordPage(KofaPage): |
---|
| 2225 | grok.context(IKofaObject) |
---|
[7660] | 2226 | grok.name('setpassword') |
---|
| 2227 | grok.require('waeup.Anonymous') |
---|
| 2228 | grok.template('setpassword') |
---|
[7723] | 2229 | label = _('Set password for first-time login') |
---|
[7660] | 2230 | ac_prefix = 'PWD' |
---|
| 2231 | pnav = 0 |
---|
[7738] | 2232 | set_button = _('Set') |
---|
[7660] | 2233 | |
---|
| 2234 | def update(self, SUBMIT=None): |
---|
| 2235 | self.reg_number = self.request.form.get('reg_number', None) |
---|
| 2236 | self.ac_series = self.request.form.get('ac_series', None) |
---|
| 2237 | self.ac_number = self.request.form.get('ac_number', None) |
---|
| 2238 | |
---|
| 2239 | if SUBMIT is None: |
---|
| 2240 | return |
---|
| 2241 | hitlist = search(query=self.reg_number, |
---|
| 2242 | searchtype='reg_number', view=self) |
---|
| 2243 | if not hitlist: |
---|
[7723] | 2244 | self.flash(_('No student found.')) |
---|
[7660] | 2245 | return |
---|
| 2246 | if len(hitlist) != 1: # Cannot happen but anyway |
---|
[7723] | 2247 | self.flash(_('More than one student found.')) |
---|
[7660] | 2248 | return |
---|
| 2249 | student = hitlist[0].context |
---|
| 2250 | self.student_id = student.student_id |
---|
| 2251 | student_pw = student.password |
---|
| 2252 | pin = '%s-%s-%s' % (self.ac_prefix, self.ac_series, self.ac_number) |
---|
| 2253 | code = get_access_code(pin) |
---|
| 2254 | if not code: |
---|
[7723] | 2255 | self.flash(_('Access code is invalid.')) |
---|
[7660] | 2256 | return |
---|
| 2257 | if student_pw and pin == student.adm_code: |
---|
[7723] | 2258 | self.flash(_( |
---|
| 2259 | 'Password has already been set. Your Student Id is ${a}', |
---|
| 2260 | mapping = {'a':self.student_id})) |
---|
[7660] | 2261 | return |
---|
| 2262 | elif student_pw: |
---|
| 2263 | self.flash( |
---|
[7723] | 2264 | _('Password has already been set. You are using the ' + |
---|
| 2265 | 'wrong Access Code.')) |
---|
[7660] | 2266 | return |
---|
| 2267 | # Mark pin as used (this also fires a pin related transition) |
---|
| 2268 | # and set student password |
---|
| 2269 | if code.state == USED: |
---|
[7723] | 2270 | self.flash(_('Access code has already been used.')) |
---|
[7660] | 2271 | return |
---|
| 2272 | else: |
---|
[7723] | 2273 | comment = _(u"invalidated") |
---|
[7660] | 2274 | # Here we know that the ac is in state initialized so we do not |
---|
| 2275 | # expect an exception |
---|
| 2276 | invalidate_accesscode(pin,comment) |
---|
| 2277 | IUserAccount(student).setPassword(self.ac_number) |
---|
| 2278 | student.adm_code = pin |
---|
[7723] | 2279 | self.flash(_('Password has been set. Your Student Id is ${a}', |
---|
| 2280 | mapping = {'a':self.student_id})) |
---|
[7811] | 2281 | return |
---|
[8779] | 2282 | |
---|
| 2283 | class StudentRequestPasswordPage(KofaAddFormPage): |
---|
| 2284 | """Captcha'd registration page for applicants. |
---|
| 2285 | """ |
---|
| 2286 | grok.name('requestpw') |
---|
| 2287 | grok.require('waeup.Anonymous') |
---|
| 2288 | grok.template('requestpw') |
---|
| 2289 | form_fields = grok.AutoFields(IStudentRequestPW).select( |
---|
[8854] | 2290 | 'firstname','number','email') |
---|
[8779] | 2291 | label = _('Request password for first-time login') |
---|
| 2292 | |
---|
| 2293 | def update(self): |
---|
| 2294 | # Handle captcha |
---|
| 2295 | self.captcha = getUtility(ICaptchaManager).getCaptcha() |
---|
| 2296 | self.captcha_result = self.captcha.verify(self.request) |
---|
| 2297 | self.captcha_code = self.captcha.display(self.captcha_result.error_code) |
---|
| 2298 | return |
---|
| 2299 | |
---|
| 2300 | def _redirect(self, email, password, student_id): |
---|
| 2301 | # Forward only email to landing page in base package. |
---|
| 2302 | self.redirect(self.url(self.context, 'requestpw_complete', |
---|
| 2303 | data = dict(email=email))) |
---|
| 2304 | return |
---|
| 2305 | |
---|
| 2306 | def _pw_used(self): |
---|
[8780] | 2307 | # XXX: False if password has not been used. We need an extra |
---|
| 2308 | # attribute which remembers if student logged in. |
---|
[8779] | 2309 | return True |
---|
| 2310 | |
---|
[8854] | 2311 | @action(_('Send login credentials to email address'), style='primary') |
---|
[8779] | 2312 | def get_credentials(self, **data): |
---|
| 2313 | if not self.captcha_result.is_valid: |
---|
| 2314 | # Captcha will display error messages automatically. |
---|
| 2315 | # No need to flash something. |
---|
| 2316 | return |
---|
[8854] | 2317 | number = data.get('number','') |
---|
[8779] | 2318 | firstname = data.get('firstname','') |
---|
| 2319 | cat = getUtility(ICatalog, name='students_catalog') |
---|
| 2320 | results = list( |
---|
[8854] | 2321 | cat.searchResults(reg_number=(number, number))) |
---|
| 2322 | if not results: |
---|
| 2323 | results = list( |
---|
| 2324 | cat.searchResults(matric_number=(number, number))) |
---|
[8779] | 2325 | if results: |
---|
| 2326 | student = results[0] |
---|
| 2327 | if getattr(student,'firstname',None) is None: |
---|
| 2328 | self.flash(_('An error occurred.')) |
---|
| 2329 | return |
---|
| 2330 | elif student.firstname.lower() != firstname.lower(): |
---|
| 2331 | # Don't tell the truth here. Anonymous must not |
---|
| 2332 | # know that a record was found and only the firstname |
---|
| 2333 | # verification failed. |
---|
| 2334 | self.flash(_('No student record found.')) |
---|
| 2335 | return |
---|
| 2336 | elif student.password is not None and self._pw_used: |
---|
| 2337 | self.flash(_('Your password has already been set and used. ' |
---|
| 2338 | 'Please proceed to the login page.')) |
---|
| 2339 | return |
---|
| 2340 | # Store email address but nothing else. |
---|
| 2341 | student.email = data['email'] |
---|
| 2342 | notify(grok.ObjectModifiedEvent(student)) |
---|
| 2343 | else: |
---|
| 2344 | # No record found, this is the truth. |
---|
| 2345 | self.flash(_('No student record found.')) |
---|
| 2346 | return |
---|
| 2347 | |
---|
| 2348 | kofa_utils = getUtility(IKofaUtils) |
---|
| 2349 | password = kofa_utils.genPassword() |
---|
[8857] | 2350 | mandate = PasswordMandate() |
---|
[8853] | 2351 | mandate.params['password'] = password |
---|
[8858] | 2352 | mandate.params['user'] = student |
---|
[8853] | 2353 | site = grok.getSite() |
---|
| 2354 | site['mandates'].addMandate(mandate) |
---|
[8779] | 2355 | # Send email with credentials |
---|
[8853] | 2356 | args = {'mandate_id':mandate.mandate_id} |
---|
| 2357 | mandate_url = self.url(site) + '/mandate?%s' % urlencode(args) |
---|
| 2358 | url_info = u'Confirmation link: %s' % mandate_url |
---|
[8779] | 2359 | msg = _('You have successfully requested a password for the') |
---|
| 2360 | if kofa_utils.sendCredentials(IUserAccount(student), |
---|
[8853] | 2361 | password, url_info, msg): |
---|
[8779] | 2362 | email_sent = student.email |
---|
| 2363 | else: |
---|
| 2364 | email_sent = None |
---|
| 2365 | self._redirect(email=email_sent, password=password, |
---|
| 2366 | student_id=student.student_id) |
---|
[8856] | 2367 | ob_class = self.__implemented__.__name__.replace('waeup.kofa.','') |
---|
| 2368 | self.context.logger.info( |
---|
| 2369 | '%s - %s (%s) - %s' % (ob_class, number, student.student_id, email_sent)) |
---|
[8779] | 2370 | return |
---|
| 2371 | |
---|
| 2372 | class StudentRequestPasswordEmailSent(KofaPage): |
---|
| 2373 | """Landing page after successful password request. |
---|
| 2374 | |
---|
| 2375 | """ |
---|
| 2376 | grok.name('requestpw_complete') |
---|
| 2377 | grok.require('waeup.Public') |
---|
| 2378 | grok.template('requestpwmailsent') |
---|
| 2379 | label = _('Your password request was successful.') |
---|
| 2380 | |
---|
| 2381 | def update(self, email=None, student_id=None, password=None): |
---|
| 2382 | self.email = email |
---|
| 2383 | self.password = password |
---|
| 2384 | self.student_id = student_id |
---|
[8974] | 2385 | return |
---|