[7195] | 1 | ## $Id: browser.py 13533 2015-12-03 20:04:17Z henrik $ |
---|
| 2 | ## |
---|
[6953] | 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 hostels and related components. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
[6973] | 21 | import sys |
---|
[7718] | 22 | from zope.i18n import translate |
---|
| 23 | from zope.component import getUtility |
---|
[13445] | 24 | from zope.catalog.interfaces import ICatalog |
---|
[9217] | 25 | from waeup.kofa.browser.layout import ( |
---|
[7819] | 26 | KofaEditFormPage, KofaAddFormPage, KofaDisplayFormPage, |
---|
[13319] | 27 | NullValidator, UtilityView) |
---|
[7811] | 28 | from waeup.kofa.browser.breadcrumbs import Breadcrumb |
---|
| 29 | from waeup.kofa.browser.layout import default_primary_nav_template |
---|
| 30 | from waeup.kofa.browser.pages import delSubobjects |
---|
| 31 | from waeup.kofa.browser.viewlets import ( |
---|
[7257] | 32 | ManageActionButton, PrimaryNavTab) |
---|
[7811] | 33 | from waeup.kofa.browser.layout import jsaction, action |
---|
[13177] | 34 | from waeup.kofa.interfaces import IKofaObject, IKofaUtils, DOCLINK |
---|
[7811] | 35 | from waeup.kofa.interfaces import MessageFactory as _ |
---|
| 36 | from waeup.kofa.hostels.vocabularies import NOT_OCCUPIED |
---|
| 37 | from waeup.kofa.hostels.hostel import Hostel |
---|
| 38 | from waeup.kofa.hostels.interfaces import ( |
---|
[9414] | 39 | IHostelsContainer, IHostel, IBed) |
---|
[8685] | 40 | from waeup.kofa.widgets.datewidget import FriendlyDatetimeDisplayWidget |
---|
[6953] | 41 | |
---|
[6956] | 42 | # Save function used for save methods in manager pages |
---|
| 43 | def msave(view, **data): |
---|
| 44 | changed_fields = view.applyData(view.context, **data) |
---|
| 45 | # Turn list of lists into single list |
---|
| 46 | if changed_fields: |
---|
| 47 | changed_fields = reduce(lambda x,y: x+y, changed_fields.values()) |
---|
| 48 | fields_string = ' + '.join(changed_fields) |
---|
| 49 | view.context._p_changed = True |
---|
[7718] | 50 | view.flash(_('Form has been saved.')) |
---|
[6956] | 51 | if fields_string: |
---|
[13166] | 52 | view.context.writeLogMessage(view, 'saved: %s' % fields_string) |
---|
[6956] | 53 | return |
---|
| 54 | |
---|
[6953] | 55 | class HostelsTab(PrimaryNavTab): |
---|
| 56 | """Hostels tab in primary navigation. |
---|
| 57 | """ |
---|
| 58 | |
---|
[7819] | 59 | grok.context(IKofaObject) |
---|
[6953] | 60 | grok.order(5) |
---|
| 61 | grok.require('waeup.viewHostels') |
---|
[10771] | 62 | grok.name('hostelstab') |
---|
[7243] | 63 | template = default_primary_nav_template |
---|
[6953] | 64 | pnav = 5 |
---|
[7674] | 65 | tab_title = _(u'Hostels') |
---|
[6953] | 66 | |
---|
| 67 | @property |
---|
| 68 | def link_target(self): |
---|
| 69 | return self.view.application_url('hostels') |
---|
| 70 | |
---|
| 71 | class HostelsBreadcrumb(Breadcrumb): |
---|
| 72 | """A breadcrumb for the hostels container. |
---|
| 73 | """ |
---|
| 74 | grok.context(IHostelsContainer) |
---|
[7718] | 75 | title = _(u'Hostels') |
---|
[6953] | 76 | |
---|
| 77 | class HostelBreadcrumb(Breadcrumb): |
---|
| 78 | """A breadcrumb for the hostel container. |
---|
| 79 | """ |
---|
| 80 | grok.context(IHostel) |
---|
| 81 | |
---|
[6959] | 82 | def title(self): |
---|
| 83 | return self.context.hostel_name |
---|
| 84 | |
---|
[7068] | 85 | class BedBreadcrumb(Breadcrumb): |
---|
| 86 | """A breadcrumb for the hostel container. |
---|
| 87 | """ |
---|
| 88 | grok.context(IBed) |
---|
| 89 | |
---|
| 90 | def title(self): |
---|
[9199] | 91 | co = self.context.coordinates |
---|
[7718] | 92 | return _('Block ${a}, Room ${b}, Bed ${c}', |
---|
| 93 | mapping = {'a':co[1], 'b':co[2], 'c':co[3]}) |
---|
[7068] | 94 | |
---|
[7819] | 95 | class HostelsContainerPage(KofaDisplayFormPage): |
---|
[6953] | 96 | """The standard view for hostels containers. |
---|
| 97 | """ |
---|
| 98 | grok.context(IHostelsContainer) |
---|
| 99 | grok.name('index') |
---|
| 100 | grok.require('waeup.viewHostels') |
---|
[6959] | 101 | grok.template('containerpage') |
---|
[7718] | 102 | label = _('Accommodation Section') |
---|
[6953] | 103 | pnav = 5 |
---|
[8685] | 104 | form_fields = grok.AutoFields(IHostelsContainer) |
---|
| 105 | form_fields[ |
---|
| 106 | 'startdate'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
| 107 | form_fields[ |
---|
| 108 | 'enddate'].custom_widget = FriendlyDatetimeDisplayWidget('le') |
---|
[6953] | 109 | |
---|
| 110 | class HostelsContainerManageActionButton(ManageActionButton): |
---|
| 111 | grok.order(1) |
---|
| 112 | grok.context(IHostelsContainer) |
---|
| 113 | grok.view(HostelsContainerPage) |
---|
| 114 | grok.require('waeup.manageHostels') |
---|
[7718] | 115 | text = _('Manage accommodation section') |
---|
[6953] | 116 | |
---|
[13484] | 117 | class HostelsStatisticsActionButton(ManageActionButton): |
---|
| 118 | grok.order(2) |
---|
| 119 | grok.context(IHostelsContainer) |
---|
| 120 | grok.view(HostelsContainerPage) |
---|
| 121 | grok.require('waeup.manageHostels') |
---|
| 122 | icon = 'actionicon_statistics.png' |
---|
| 123 | text = _('Bed statistics') |
---|
| 124 | target = 'statistics' |
---|
| 125 | |
---|
[8685] | 126 | class HostelsContainerManagePage(KofaEditFormPage): |
---|
[6953] | 127 | """The manage page for hostel containers. |
---|
| 128 | """ |
---|
| 129 | grok.context(IHostelsContainer) |
---|
| 130 | grok.name('manage') |
---|
| 131 | grok.require('waeup.manageHostels') |
---|
[6959] | 132 | grok.template('containermanagepage') |
---|
[6953] | 133 | pnav = 5 |
---|
[7718] | 134 | label = _('Manage accommodation section') |
---|
[8685] | 135 | form_fields = grok.AutoFields(IHostelsContainer) |
---|
| 136 | taboneactions = [_('Save')] |
---|
[9197] | 137 | tabtwoactions = [_('Add hostel'), |
---|
| 138 | _('Clear all hostels'), |
---|
| 139 | _('Remove selected')] |
---|
[13177] | 140 | doclink = DOCLINK + '/hostels.html#accommodation-section' |
---|
[6953] | 141 | |
---|
[6959] | 142 | # It's quite dangerous to remove entire hostels with its content (beds). |
---|
[6966] | 143 | # Thus, this remove method should be combined with an archiving function. |
---|
[7718] | 144 | @jsaction(_('Remove selected')) |
---|
[6959] | 145 | def delHostels(self, **data): |
---|
| 146 | form = self.request.form |
---|
[9701] | 147 | if 'val_id' in form: |
---|
[6959] | 148 | deleted = [] |
---|
| 149 | child_id = form['val_id'] |
---|
[6966] | 150 | if not isinstance(child_id, list): |
---|
| 151 | child_id = [child_id] |
---|
[6959] | 152 | for id in child_id: |
---|
| 153 | deleted.append(id) |
---|
[13170] | 154 | self.context.writeLogMessage( |
---|
| 155 | self, 'deleted: % s' % ', '.join(deleted)) |
---|
[6959] | 156 | delSubobjects(self, redirect='@@manage', tab='2') |
---|
| 157 | return |
---|
[6953] | 158 | |
---|
[7718] | 159 | @action(_('Add hostel'), validator=NullValidator) |
---|
[6959] | 160 | def addSubunit(self, **data): |
---|
| 161 | self.redirect(self.url(self.context, 'addhostel')) |
---|
| 162 | return |
---|
| 163 | |
---|
[11254] | 164 | @jsaction(_('Clear all hostels'), style='danger') |
---|
[9197] | 165 | def clearHostels(self, **data): |
---|
| 166 | self.context.clearAllHostels() |
---|
| 167 | self.flash(_('All hostels cleared.')) |
---|
[13166] | 168 | self.context.writeLogMessage(self, 'all hostels cleared') |
---|
[11254] | 169 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[9197] | 170 | return |
---|
| 171 | |
---|
[8685] | 172 | @action(_('Save'), style='primary') |
---|
| 173 | def save(self, **data): |
---|
[13445] | 174 | if data['accommodation_session'] != self.context.accommodation_session: |
---|
| 175 | catalog = getUtility(ICatalog, name='beds_catalog') |
---|
| 176 | beds = catalog.searchResults(bed_type=(None,None)) |
---|
| 177 | if len(beds): |
---|
| 178 | self.flash(_('You can\'t change the booking session ' |
---|
| 179 | 'before clearing all hostels.'), |
---|
| 180 | type='warning') |
---|
| 181 | return |
---|
[8685] | 182 | self.applyData(self.context, **data) |
---|
| 183 | self.flash(_('Settings have been saved.')) |
---|
| 184 | return |
---|
| 185 | |
---|
[13319] | 186 | class ReleaseExpiredAllocationsPage(UtilityView, grok.View): |
---|
| 187 | """Release all expired allocated beds. |
---|
| 188 | """ |
---|
| 189 | grok.context(IHostelsContainer) |
---|
| 190 | grok.name('releaseexpired') |
---|
[13320] | 191 | grok.require('waeup.manageHostels') |
---|
[13319] | 192 | |
---|
| 193 | def update(self, n=7): |
---|
[13529] | 194 | if not grok.getSite()['configuration'].maintmode_enabled_by: |
---|
| 195 | self.flash( |
---|
| 196 | _('Portal must be in maintenance mode for releasing expired ' |
---|
| 197 | 'bed allocations.'), |
---|
| 198 | type='danger') |
---|
| 199 | self.redirect(self.url(self.context)) |
---|
| 200 | return |
---|
[13319] | 201 | released = self.context.releaseExpiredAllocations(n) |
---|
| 202 | if len(released): |
---|
| 203 | message = ', '.join(released) |
---|
| 204 | self.context.writeLogMessage(self, 'released: %s' % message) |
---|
[13533] | 205 | if len(released) > 50: |
---|
| 206 | flash_msg = _('Successfully released ${a} beds.', |
---|
| 207 | mapping = {'a':len(released)}) |
---|
| 208 | else: |
---|
| 209 | flash_msg = _('Successfully released beds: ${a}', |
---|
| 210 | mapping = {'a':message}) |
---|
[13319] | 211 | else: |
---|
| 212 | flash_msg = _('No bed released.') |
---|
| 213 | self.flash(flash_msg, type='success') |
---|
| 214 | self.redirect(self.url(self.context)) |
---|
| 215 | return |
---|
| 216 | |
---|
| 217 | def render(self): |
---|
| 218 | return |
---|
| 219 | |
---|
[13484] | 220 | class HostelsStatisticsPage(KofaDisplayFormPage): |
---|
| 221 | """Some statistics about beds in hostels. |
---|
| 222 | """ |
---|
| 223 | grok.context(IHostelsContainer) |
---|
| 224 | grok.name('statistics') |
---|
| 225 | grok.require('waeup.manageHostels') |
---|
| 226 | grok.template('containerstatistics') |
---|
| 227 | label = _('Bed Statistics') |
---|
| 228 | |
---|
[7819] | 229 | class HostelAddFormPage(KofaAddFormPage): |
---|
[6953] | 230 | """Add-form to add a hostel. |
---|
| 231 | """ |
---|
| 232 | grok.context(IHostelsContainer) |
---|
| 233 | grok.require('waeup.manageHostels') |
---|
| 234 | grok.name('addhostel') |
---|
[6970] | 235 | #grok.template('hosteladdpage') |
---|
[10683] | 236 | form_fields = grok.AutoFields(IHostel).omit('beds_reserved', 'hostel_id') |
---|
[7718] | 237 | label = _('Add hostel') |
---|
[6953] | 238 | pnav = 5 |
---|
[13177] | 239 | doclink = DOCLINK + '/hostels.html#accommodation-section' |
---|
[6953] | 240 | |
---|
[7718] | 241 | @action(_('Create hostel')) |
---|
[6953] | 242 | def addHostel(self, **data): |
---|
[6954] | 243 | hostel = Hostel() |
---|
| 244 | self.applyData(hostel, **data) |
---|
[13426] | 245 | hostel.hostel_id = data['hostel_name'].lower().replace( |
---|
| 246 | ' ','-').replace('_','-').replace('.','') |
---|
[6966] | 247 | try: |
---|
| 248 | self.context.addHostel(hostel) |
---|
| 249 | except KeyError: |
---|
[11254] | 250 | self.flash(_('The hostel already exists.'), type='warning') |
---|
[6966] | 251 | return |
---|
[7718] | 252 | self.flash(_('Hostel created.')) |
---|
[13166] | 253 | self.context.writeLogMessage(self, 'added: % s' % data['hostel_name']) |
---|
[6953] | 254 | self.redirect(self.url(self.context[hostel.hostel_id], 'index')) |
---|
| 255 | return |
---|
| 256 | |
---|
[7819] | 257 | class HostelDisplayFormPage(KofaDisplayFormPage): |
---|
[6953] | 258 | """ Page to display hostel data |
---|
| 259 | """ |
---|
| 260 | grok.context(IHostel) |
---|
| 261 | grok.name('index') |
---|
| 262 | grok.require('waeup.viewHostels') |
---|
[9534] | 263 | grok.template('hostelpage') |
---|
| 264 | form_fields = grok.AutoFields(IHostel).omit('beds_reserved') |
---|
[6953] | 265 | pnav = 5 |
---|
| 266 | |
---|
[6956] | 267 | @property |
---|
| 268 | def label(self): |
---|
| 269 | return self.context.hostel_name |
---|
[6953] | 270 | |
---|
| 271 | class HostelManageActionButton(ManageActionButton): |
---|
| 272 | grok.order(1) |
---|
| 273 | grok.context(IHostel) |
---|
| 274 | grok.view(HostelDisplayFormPage) |
---|
| 275 | grok.require('waeup.manageHostels') |
---|
[7718] | 276 | text = _('Manage') |
---|
[6970] | 277 | target = 'manage' |
---|
[6953] | 278 | |
---|
[7819] | 279 | class HostelManageFormPage(KofaEditFormPage): |
---|
[6953] | 280 | """ View to edit hostel data |
---|
| 281 | """ |
---|
| 282 | grok.context(IHostel) |
---|
[6970] | 283 | grok.name('manage') |
---|
[6953] | 284 | grok.require('waeup.manageHostels') |
---|
[9534] | 285 | form_fields = grok.AutoFields(IHostel).omit('hostel_id', 'beds_reserved') |
---|
[6970] | 286 | grok.template('hostelmanagepage') |
---|
[7718] | 287 | label = _('Manage hostel') |
---|
[6953] | 288 | pnav = 5 |
---|
[7718] | 289 | taboneactions = [_('Save')] |
---|
| 290 | tabtwoactions = [_('Update all beds'), |
---|
| 291 | _('Switch reservation of selected beds'), |
---|
[9197] | 292 | _('Release selected beds'), |
---|
| 293 | _('Clear hostel')] |
---|
[6996] | 294 | not_occupied = NOT_OCCUPIED |
---|
[13177] | 295 | doclink = DOCLINK + '/hostels.html#browser-pages' |
---|
[6953] | 296 | |
---|
[6956] | 297 | @property |
---|
[6996] | 298 | def students_url(self): |
---|
| 299 | return self.url(grok.getSite(),'students') |
---|
| 300 | |
---|
[11254] | 301 | @action(_('Save'), style='primary') |
---|
[6953] | 302 | def save(self, **data): |
---|
| 303 | msave(self, **data) |
---|
| 304 | return |
---|
[6970] | 305 | |
---|
[13346] | 306 | @action(_('Update all beds'), style='primary', |
---|
| 307 | warning=_('Attention: The updater removes all reservation flags of existing beds.' |
---|
| 308 | ' You really want to update?')) |
---|
[6970] | 309 | def updateBeds(self, **data): |
---|
[13529] | 310 | if not grok.getSite()['configuration'].maintmode_enabled_by: |
---|
| 311 | self.flash( |
---|
| 312 | _('Portal must be in maintenance mode for bed updates.'), |
---|
| 313 | type='danger') |
---|
| 314 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
| 315 | return |
---|
[6988] | 316 | removed, added, modified, modified_beds = self.context.updateBeds() |
---|
| 317 | message = '%d empty beds removed, %d beds added, %d occupied beds modified (%s)' % ( |
---|
| 318 | removed, added, modified, modified_beds) |
---|
[13494] | 319 | if modified > 50: |
---|
| 320 | flash_message = _( |
---|
| 321 | '${a} empty beds removed, ${b} beds added, ' |
---|
| 322 | + '${c} occupied beds modified', |
---|
| 323 | mapping = {'a':removed, 'b':added, 'c':modified}) |
---|
| 324 | else: |
---|
| 325 | flash_message = _( |
---|
| 326 | '${a} empty beds removed, ${b} beds added, ' |
---|
| 327 | + '${c} occupied beds modified (${d})', |
---|
| 328 | mapping = {'a':removed, 'b':added, 'c':modified, 'd':modified_beds}) |
---|
[7718] | 329 | self.flash(flash_message) |
---|
[13166] | 330 | self.context.writeLogMessage(self, message) |
---|
[11254] | 331 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6970] | 332 | return |
---|
[6973] | 333 | |
---|
[7718] | 334 | @action(_('Switch reservation of selected beds')) |
---|
[6974] | 335 | def switchReservations(self, **data): |
---|
[6973] | 336 | form = self.request.form |
---|
[9701] | 337 | if 'val_id' in form: |
---|
[6973] | 338 | child_id = form['val_id'] |
---|
| 339 | else: |
---|
[11254] | 340 | self.flash(_('No item selected.'), type='warning') |
---|
| 341 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6973] | 342 | return |
---|
| 343 | if not isinstance(child_id, list): |
---|
| 344 | child_id = [child_id] |
---|
[7718] | 345 | switched = [] # for log file |
---|
| 346 | switched_translated = [] # for flash message |
---|
[7833] | 347 | # Here we know that the cookie has been set |
---|
| 348 | preferred_language = self.request.cookies.get('kofa.language') |
---|
[6973] | 349 | for bed_id in child_id: |
---|
[7718] | 350 | message = self.context[bed_id].switchReservation() |
---|
| 351 | switched.append('%s (%s)' % (bed_id,message)) |
---|
[7811] | 352 | m_translated = translate(message, 'waeup.kofa', |
---|
[7718] | 353 | target_language=preferred_language) |
---|
| 354 | switched_translated.append('%s (%s)' % (bed_id,m_translated)) |
---|
[6973] | 355 | if len(switched): |
---|
[6988] | 356 | message = ', '.join(switched) |
---|
[7718] | 357 | m_translated = ', '.join(switched_translated) |
---|
[13476] | 358 | if len(switched) > 50: |
---|
| 359 | self.flash(_('Successfully switched ${a} beds.', |
---|
| 360 | mapping = {'a':len(switched)})) |
---|
| 361 | else: |
---|
| 362 | self.flash(_('Successfully switched beds: ${a}', |
---|
| 363 | mapping = {'a':m_translated})) |
---|
[13166] | 364 | self.context.writeLogMessage(self, 'switched: %s' % message) |
---|
[11254] | 365 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6973] | 366 | return |
---|
| 367 | |
---|
[7718] | 368 | @action(_('Release selected beds')) |
---|
[7042] | 369 | def releaseBeds(self, **data): |
---|
| 370 | form = self.request.form |
---|
[9701] | 371 | if 'val_id' in form: |
---|
[7042] | 372 | child_id = form['val_id'] |
---|
| 373 | else: |
---|
[11254] | 374 | self.flash(_('No item selected.'), type='warning') |
---|
| 375 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[7042] | 376 | return |
---|
| 377 | if not isinstance(child_id, list): |
---|
| 378 | child_id = [child_id] |
---|
| 379 | released = [] |
---|
| 380 | for bed_id in child_id: |
---|
[7068] | 381 | message = self.context[bed_id].releaseBed() |
---|
[7070] | 382 | if message: |
---|
| 383 | released.append('%s (%s)' % (bed_id,message)) |
---|
[7042] | 384 | if len(released): |
---|
| 385 | message = ', '.join(released) |
---|
[7718] | 386 | self.flash(_('Successfully released beds: ${a}', |
---|
| 387 | mapping = {'a':message})) |
---|
[13166] | 388 | self.context.writeLogMessage(self, 'released: %s' % message) |
---|
[11254] | 389 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[7070] | 390 | else: |
---|
[11254] | 391 | self.flash(_('No allocated bed selected.'), type='warning') |
---|
| 392 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[7042] | 393 | return |
---|
[7068] | 394 | |
---|
[11254] | 395 | @jsaction(_('Clear hostel'), style='danger') |
---|
[9197] | 396 | def clearHostel(self, **data): |
---|
| 397 | self.context.clearHostel() |
---|
| 398 | self.flash(_('Hostel cleared.')) |
---|
[13166] | 399 | self.context.writeLogMessage(self, 'cleared') |
---|
[11254] | 400 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[9197] | 401 | return |
---|
| 402 | |
---|
[7819] | 403 | class BedManageFormPage(KofaEditFormPage): |
---|
[7068] | 404 | """ View to edit bed data |
---|
| 405 | """ |
---|
[9414] | 406 | grok.context(IBed) |
---|
[7068] | 407 | grok.name('index') |
---|
| 408 | grok.require('waeup.manageHostels') |
---|
[9414] | 409 | form_fields = grok.AutoFields(IBed).omit( |
---|
[9199] | 410 | 'bed_id', 'bed_number', 'bed_type') |
---|
[7718] | 411 | label = _('Allocate student') |
---|
[7068] | 412 | pnav = 5 |
---|
[13177] | 413 | doclink = DOCLINK + '/hostels.html#manage-bed' |
---|
[7068] | 414 | |
---|
[7718] | 415 | @action(_('Save')) |
---|
[7068] | 416 | def save(self, **data): |
---|
[9416] | 417 | if data['owner'] == NOT_OCCUPIED: |
---|
[11254] | 418 | self.flash(_('No valid student id.'), type='warning') |
---|
[9416] | 419 | self.redirect(self.url(self.context)) |
---|
| 420 | return |
---|
[7068] | 421 | msave(self, **data) |
---|
[11254] | 422 | self.redirect(self.url(self.context.__parent__, '@@manage')+'#tab2') |
---|
[7068] | 423 | return |
---|
| 424 | |
---|
| 425 | def update(self): |
---|
| 426 | if self.context.owner != NOT_OCCUPIED: |
---|
| 427 | # Don't use this form for exchanging students. |
---|
| 428 | # Beds must be released first before they can be allocated to |
---|
| 429 | # other students. |
---|
[11254] | 430 | self.redirect(self.url(self.context.__parent__, '@@manage')+'#tab2') |
---|
[7811] | 431 | return |
---|