[7195] | 1 | ## $Id: browser.py 15633 2019-10-03 10:09:25Z 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 |
---|
[15633] | 23 | from zope.component import getUtility, createObject |
---|
[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 | |
---|
[15250] | 126 | class ReleaseExpiredAllocationsActionButton(ManageActionButton): |
---|
| 127 | grok.order(3) |
---|
| 128 | grok.context(IHostelsContainer) |
---|
| 129 | grok.view(HostelsContainerPage) |
---|
| 130 | grok.require('waeup.manageHostels') |
---|
| 131 | icon = 'actionicon_sweep.png' |
---|
| 132 | target = 'releaseexpired' |
---|
| 133 | text = _('Release all expired bed space allocations') |
---|
| 134 | |
---|
| 135 | @property |
---|
| 136 | def target_url(self): |
---|
| 137 | if self.target and self.context.allocation_expiration: |
---|
| 138 | return self.view.url(self.view.context, self.target) |
---|
| 139 | return |
---|
| 140 | |
---|
| 141 | @property |
---|
| 142 | def onclick(self): |
---|
[15254] | 143 | msg = _("'All expired bed space allocations will be annulled. " + \ |
---|
[15250] | 144 | "Are you sure? \\n\\n" + \ |
---|
| 145 | "Bed space allocation expires ${a} days after accommodation " + \ |
---|
| 146 | "booking if maintenance fee is not " + \ |
---|
[15254] | 147 | "paid.'") |
---|
[15250] | 148 | msg = _(msg, mapping={'a': self.context.allocation_expiration,}) |
---|
| 149 | portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE |
---|
| 150 | return "return window.confirm(%s);" % translate( |
---|
| 151 | msg, 'waeup.kofa', target_language=portal_language) |
---|
| 152 | |
---|
[8685] | 153 | class HostelsContainerManagePage(KofaEditFormPage): |
---|
[6953] | 154 | """The manage page for hostel containers. |
---|
| 155 | """ |
---|
| 156 | grok.context(IHostelsContainer) |
---|
| 157 | grok.name('manage') |
---|
| 158 | grok.require('waeup.manageHostels') |
---|
[6959] | 159 | grok.template('containermanagepage') |
---|
[6953] | 160 | pnav = 5 |
---|
[7718] | 161 | label = _('Manage accommodation section') |
---|
[8685] | 162 | form_fields = grok.AutoFields(IHostelsContainer) |
---|
| 163 | taboneactions = [_('Save')] |
---|
[9197] | 164 | tabtwoactions = [_('Add hostel'), |
---|
| 165 | _('Clear all hostels'), |
---|
| 166 | _('Remove selected')] |
---|
[13177] | 167 | doclink = DOCLINK + '/hostels.html#accommodation-section' |
---|
[6953] | 168 | |
---|
[6959] | 169 | # It's quite dangerous to remove entire hostels with its content (beds). |
---|
[6966] | 170 | # Thus, this remove method should be combined with an archiving function. |
---|
[7718] | 171 | @jsaction(_('Remove selected')) |
---|
[6959] | 172 | def delHostels(self, **data): |
---|
| 173 | form = self.request.form |
---|
[9701] | 174 | if 'val_id' in form: |
---|
[6959] | 175 | deleted = [] |
---|
| 176 | child_id = form['val_id'] |
---|
[6966] | 177 | if not isinstance(child_id, list): |
---|
| 178 | child_id = [child_id] |
---|
[6959] | 179 | for id in child_id: |
---|
| 180 | deleted.append(id) |
---|
[13170] | 181 | self.context.writeLogMessage( |
---|
| 182 | self, 'deleted: % s' % ', '.join(deleted)) |
---|
[6959] | 183 | delSubobjects(self, redirect='@@manage', tab='2') |
---|
| 184 | return |
---|
[6953] | 185 | |
---|
[7718] | 186 | @action(_('Add hostel'), validator=NullValidator) |
---|
[6959] | 187 | def addSubunit(self, **data): |
---|
| 188 | self.redirect(self.url(self.context, 'addhostel')) |
---|
| 189 | return |
---|
| 190 | |
---|
[11254] | 191 | @jsaction(_('Clear all hostels'), style='danger') |
---|
[9197] | 192 | def clearHostels(self, **data): |
---|
| 193 | self.context.clearAllHostels() |
---|
| 194 | self.flash(_('All hostels cleared.')) |
---|
[13166] | 195 | self.context.writeLogMessage(self, 'all hostels cleared') |
---|
[11254] | 196 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[9197] | 197 | return |
---|
| 198 | |
---|
[8685] | 199 | @action(_('Save'), style='primary') |
---|
| 200 | def save(self, **data): |
---|
[13445] | 201 | if data['accommodation_session'] != self.context.accommodation_session: |
---|
| 202 | catalog = getUtility(ICatalog, name='beds_catalog') |
---|
| 203 | beds = catalog.searchResults(bed_type=(None,None)) |
---|
[13565] | 204 | if len(beds) and not self.request.principal.id == 'admin': |
---|
[13445] | 205 | self.flash(_('You can\'t change the booking session ' |
---|
| 206 | 'before clearing all hostels.'), |
---|
| 207 | type='warning') |
---|
| 208 | return |
---|
[13565] | 209 | msave(self, **data) |
---|
[8685] | 210 | return |
---|
| 211 | |
---|
[13319] | 212 | class ReleaseExpiredAllocationsPage(UtilityView, grok.View): |
---|
| 213 | """Release all expired allocated beds. |
---|
| 214 | """ |
---|
| 215 | grok.context(IHostelsContainer) |
---|
| 216 | grok.name('releaseexpired') |
---|
[13320] | 217 | grok.require('waeup.manageHostels') |
---|
[13319] | 218 | |
---|
[15250] | 219 | def update(self): |
---|
| 220 | n = self.context.allocation_expiration |
---|
| 221 | if not n: |
---|
| 222 | self.flash( |
---|
| 223 | _('Forbidden'), type='danger') |
---|
| 224 | self.redirect(self.url(self.context)) |
---|
| 225 | return |
---|
[13529] | 226 | if not grok.getSite()['configuration'].maintmode_enabled_by: |
---|
| 227 | self.flash( |
---|
| 228 | _('Portal must be in maintenance mode for releasing expired ' |
---|
| 229 | 'bed allocations.'), |
---|
| 230 | type='danger') |
---|
| 231 | self.redirect(self.url(self.context)) |
---|
| 232 | return |
---|
[13319] | 233 | released = self.context.releaseExpiredAllocations(n) |
---|
| 234 | if len(released): |
---|
| 235 | message = ', '.join(released) |
---|
| 236 | self.context.writeLogMessage(self, 'released: %s' % message) |
---|
[13533] | 237 | if len(released) > 50: |
---|
| 238 | flash_msg = _('Successfully released ${a} beds.', |
---|
| 239 | mapping = {'a':len(released)}) |
---|
| 240 | else: |
---|
| 241 | flash_msg = _('Successfully released beds: ${a}', |
---|
| 242 | mapping = {'a':message}) |
---|
[13319] | 243 | else: |
---|
| 244 | flash_msg = _('No bed released.') |
---|
| 245 | self.flash(flash_msg, type='success') |
---|
| 246 | self.redirect(self.url(self.context)) |
---|
| 247 | return |
---|
| 248 | |
---|
| 249 | def render(self): |
---|
| 250 | return |
---|
| 251 | |
---|
[13484] | 252 | class HostelsStatisticsPage(KofaDisplayFormPage): |
---|
| 253 | """Some statistics about beds in hostels. |
---|
| 254 | """ |
---|
| 255 | grok.context(IHostelsContainer) |
---|
| 256 | grok.name('statistics') |
---|
| 257 | grok.require('waeup.manageHostels') |
---|
| 258 | grok.template('containerstatistics') |
---|
| 259 | label = _('Bed Statistics') |
---|
| 260 | |
---|
[7819] | 261 | class HostelAddFormPage(KofaAddFormPage): |
---|
[6953] | 262 | """Add-form to add a hostel. |
---|
| 263 | """ |
---|
| 264 | grok.context(IHostelsContainer) |
---|
| 265 | grok.require('waeup.manageHostels') |
---|
| 266 | grok.name('addhostel') |
---|
[6970] | 267 | #grok.template('hosteladdpage') |
---|
[10683] | 268 | form_fields = grok.AutoFields(IHostel).omit('beds_reserved', 'hostel_id') |
---|
[7718] | 269 | label = _('Add hostel') |
---|
[6953] | 270 | pnav = 5 |
---|
[13177] | 271 | doclink = DOCLINK + '/hostels.html#accommodation-section' |
---|
[6953] | 272 | |
---|
[7718] | 273 | @action(_('Create hostel')) |
---|
[6953] | 274 | def addHostel(self, **data): |
---|
[15633] | 275 | hostel = container = createObject(u'waeup.Hostel') |
---|
[6954] | 276 | self.applyData(hostel, **data) |
---|
[13426] | 277 | hostel.hostel_id = data['hostel_name'].lower().replace( |
---|
| 278 | ' ','-').replace('_','-').replace('.','') |
---|
[6966] | 279 | try: |
---|
| 280 | self.context.addHostel(hostel) |
---|
| 281 | except KeyError: |
---|
[11254] | 282 | self.flash(_('The hostel already exists.'), type='warning') |
---|
[6966] | 283 | return |
---|
[7718] | 284 | self.flash(_('Hostel created.')) |
---|
[13166] | 285 | self.context.writeLogMessage(self, 'added: % s' % data['hostel_name']) |
---|
[6953] | 286 | self.redirect(self.url(self.context[hostel.hostel_id], 'index')) |
---|
| 287 | return |
---|
| 288 | |
---|
[7819] | 289 | class HostelDisplayFormPage(KofaDisplayFormPage): |
---|
[6953] | 290 | """ Page to display hostel data |
---|
| 291 | """ |
---|
| 292 | grok.context(IHostel) |
---|
| 293 | grok.name('index') |
---|
| 294 | grok.require('waeup.viewHostels') |
---|
[9534] | 295 | grok.template('hostelpage') |
---|
| 296 | form_fields = grok.AutoFields(IHostel).omit('beds_reserved') |
---|
[6953] | 297 | pnav = 5 |
---|
| 298 | |
---|
[6956] | 299 | @property |
---|
| 300 | def label(self): |
---|
| 301 | return self.context.hostel_name |
---|
[6953] | 302 | |
---|
| 303 | class HostelManageActionButton(ManageActionButton): |
---|
| 304 | grok.order(1) |
---|
| 305 | grok.context(IHostel) |
---|
| 306 | grok.view(HostelDisplayFormPage) |
---|
| 307 | grok.require('waeup.manageHostels') |
---|
[7718] | 308 | text = _('Manage') |
---|
[6970] | 309 | target = 'manage' |
---|
[6953] | 310 | |
---|
[7819] | 311 | class HostelManageFormPage(KofaEditFormPage): |
---|
[6953] | 312 | """ View to edit hostel data |
---|
| 313 | """ |
---|
| 314 | grok.context(IHostel) |
---|
[6970] | 315 | grok.name('manage') |
---|
[6953] | 316 | grok.require('waeup.manageHostels') |
---|
[9534] | 317 | form_fields = grok.AutoFields(IHostel).omit('hostel_id', 'beds_reserved') |
---|
[6970] | 318 | grok.template('hostelmanagepage') |
---|
[7718] | 319 | label = _('Manage hostel') |
---|
[6953] | 320 | pnav = 5 |
---|
[7718] | 321 | taboneactions = [_('Save')] |
---|
| 322 | tabtwoactions = [_('Update all beds'), |
---|
| 323 | _('Switch reservation of selected beds'), |
---|
[9197] | 324 | _('Release selected beds'), |
---|
| 325 | _('Clear hostel')] |
---|
[6996] | 326 | not_occupied = NOT_OCCUPIED |
---|
[13177] | 327 | doclink = DOCLINK + '/hostels.html#browser-pages' |
---|
[6953] | 328 | |
---|
[6956] | 329 | @property |
---|
[6996] | 330 | def students_url(self): |
---|
| 331 | return self.url(grok.getSite(),'students') |
---|
| 332 | |
---|
[11254] | 333 | @action(_('Save'), style='primary') |
---|
[6953] | 334 | def save(self, **data): |
---|
| 335 | msave(self, **data) |
---|
| 336 | return |
---|
[6970] | 337 | |
---|
[13346] | 338 | @action(_('Update all beds'), style='primary', |
---|
| 339 | warning=_('Attention: The updater removes all reservation flags of existing beds.' |
---|
| 340 | ' You really want to update?')) |
---|
[6970] | 341 | def updateBeds(self, **data): |
---|
[13529] | 342 | if not grok.getSite()['configuration'].maintmode_enabled_by: |
---|
| 343 | self.flash( |
---|
| 344 | _('Portal must be in maintenance mode for bed updates.'), |
---|
| 345 | type='danger') |
---|
| 346 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
| 347 | return |
---|
[6988] | 348 | removed, added, modified, modified_beds = self.context.updateBeds() |
---|
| 349 | message = '%d empty beds removed, %d beds added, %d occupied beds modified (%s)' % ( |
---|
| 350 | removed, added, modified, modified_beds) |
---|
[13494] | 351 | if modified > 50: |
---|
| 352 | flash_message = _( |
---|
| 353 | '${a} empty beds removed, ${b} beds added, ' |
---|
| 354 | + '${c} occupied beds modified', |
---|
| 355 | mapping = {'a':removed, 'b':added, 'c':modified}) |
---|
| 356 | else: |
---|
| 357 | flash_message = _( |
---|
| 358 | '${a} empty beds removed, ${b} beds added, ' |
---|
| 359 | + '${c} occupied beds modified (${d})', |
---|
| 360 | mapping = {'a':removed, 'b':added, 'c':modified, 'd':modified_beds}) |
---|
[7718] | 361 | self.flash(flash_message) |
---|
[13166] | 362 | self.context.writeLogMessage(self, message) |
---|
[11254] | 363 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6970] | 364 | return |
---|
[6973] | 365 | |
---|
[7718] | 366 | @action(_('Switch reservation of selected beds')) |
---|
[6974] | 367 | def switchReservations(self, **data): |
---|
[6973] | 368 | form = self.request.form |
---|
[9701] | 369 | if 'val_id' in form: |
---|
[6973] | 370 | child_id = form['val_id'] |
---|
| 371 | else: |
---|
[11254] | 372 | self.flash(_('No item selected.'), type='warning') |
---|
| 373 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6973] | 374 | return |
---|
| 375 | if not isinstance(child_id, list): |
---|
| 376 | child_id = [child_id] |
---|
[7718] | 377 | switched = [] # for log file |
---|
| 378 | switched_translated = [] # for flash message |
---|
[7833] | 379 | # Here we know that the cookie has been set |
---|
| 380 | preferred_language = self.request.cookies.get('kofa.language') |
---|
[6973] | 381 | for bed_id in child_id: |
---|
[7718] | 382 | message = self.context[bed_id].switchReservation() |
---|
| 383 | switched.append('%s (%s)' % (bed_id,message)) |
---|
[7811] | 384 | m_translated = translate(message, 'waeup.kofa', |
---|
[7718] | 385 | target_language=preferred_language) |
---|
| 386 | switched_translated.append('%s (%s)' % (bed_id,m_translated)) |
---|
[6973] | 387 | if len(switched): |
---|
[6988] | 388 | message = ', '.join(switched) |
---|
[7718] | 389 | m_translated = ', '.join(switched_translated) |
---|
[13476] | 390 | if len(switched) > 50: |
---|
| 391 | self.flash(_('Successfully switched ${a} beds.', |
---|
| 392 | mapping = {'a':len(switched)})) |
---|
| 393 | else: |
---|
| 394 | self.flash(_('Successfully switched beds: ${a}', |
---|
| 395 | mapping = {'a':m_translated})) |
---|
[13166] | 396 | self.context.writeLogMessage(self, 'switched: %s' % message) |
---|
[11254] | 397 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[6973] | 398 | return |
---|
| 399 | |
---|
[7718] | 400 | @action(_('Release selected beds')) |
---|
[7042] | 401 | def releaseBeds(self, **data): |
---|
| 402 | form = self.request.form |
---|
[9701] | 403 | if 'val_id' in form: |
---|
[7042] | 404 | child_id = form['val_id'] |
---|
| 405 | else: |
---|
[11254] | 406 | self.flash(_('No item selected.'), type='warning') |
---|
| 407 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[7042] | 408 | return |
---|
| 409 | if not isinstance(child_id, list): |
---|
| 410 | child_id = [child_id] |
---|
| 411 | released = [] |
---|
| 412 | for bed_id in child_id: |
---|
[7068] | 413 | message = self.context[bed_id].releaseBed() |
---|
[7070] | 414 | if message: |
---|
| 415 | released.append('%s (%s)' % (bed_id,message)) |
---|
[7042] | 416 | if len(released): |
---|
| 417 | message = ', '.join(released) |
---|
[7718] | 418 | self.flash(_('Successfully released beds: ${a}', |
---|
| 419 | mapping = {'a':message})) |
---|
[13166] | 420 | self.context.writeLogMessage(self, 'released: %s' % message) |
---|
[11254] | 421 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[7070] | 422 | else: |
---|
[11254] | 423 | self.flash(_('No allocated bed selected.'), type='warning') |
---|
| 424 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[7042] | 425 | return |
---|
[7068] | 426 | |
---|
[11254] | 427 | @jsaction(_('Clear hostel'), style='danger') |
---|
[9197] | 428 | def clearHostel(self, **data): |
---|
| 429 | self.context.clearHostel() |
---|
| 430 | self.flash(_('Hostel cleared.')) |
---|
[13166] | 431 | self.context.writeLogMessage(self, 'cleared') |
---|
[11254] | 432 | self.redirect(self.url(self.context, '@@manage')+'#tab2') |
---|
[9197] | 433 | return |
---|
| 434 | |
---|
[7819] | 435 | class BedManageFormPage(KofaEditFormPage): |
---|
[7068] | 436 | """ View to edit bed data |
---|
| 437 | """ |
---|
[9414] | 438 | grok.context(IBed) |
---|
[7068] | 439 | grok.name('index') |
---|
| 440 | grok.require('waeup.manageHostels') |
---|
[9414] | 441 | form_fields = grok.AutoFields(IBed).omit( |
---|
[9199] | 442 | 'bed_id', 'bed_number', 'bed_type') |
---|
[7718] | 443 | label = _('Allocate student') |
---|
[7068] | 444 | pnav = 5 |
---|
[13177] | 445 | doclink = DOCLINK + '/hostels.html#manage-bed' |
---|
[7068] | 446 | |
---|
[7718] | 447 | @action(_('Save')) |
---|
[7068] | 448 | def save(self, **data): |
---|
[9416] | 449 | if data['owner'] == NOT_OCCUPIED: |
---|
[11254] | 450 | self.flash(_('No valid student id.'), type='warning') |
---|
[9416] | 451 | self.redirect(self.url(self.context)) |
---|
| 452 | return |
---|
[7068] | 453 | msave(self, **data) |
---|
[11254] | 454 | self.redirect(self.url(self.context.__parent__, '@@manage')+'#tab2') |
---|
[7068] | 455 | return |
---|
| 456 | |
---|
| 457 | def update(self): |
---|
| 458 | if self.context.owner != NOT_OCCUPIED: |
---|
| 459 | # Don't use this form for exchanging students. |
---|
| 460 | # Beds must be released first before they can be allocated to |
---|
| 461 | # other students. |
---|
[11254] | 462 | self.redirect(self.url(self.context.__parent__, '@@manage')+'#tab2') |
---|
[7811] | 463 | return |
---|