[8848] | 1 | ## $Id: browser.py 12816 2015-03-23 16:47:58Z henrik $ |
---|
| 2 | ## |
---|
| 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 | """Views for mandates. |
---|
| 19 | """ |
---|
| 20 | import grok |
---|
[12816] | 21 | from urllib import urlencode |
---|
[11949] | 22 | from waeup.ikoba.browser.layout import UtilityView |
---|
[11954] | 23 | from waeup.ikoba.interfaces import ICompany |
---|
[11949] | 24 | from waeup.ikoba.interfaces import MessageFactory as _ |
---|
[8848] | 25 | |
---|
| 26 | class MandateView(UtilityView, grok.View): |
---|
| 27 | """View to execute mandate. |
---|
| 28 | """ |
---|
[11954] | 29 | grok.context(ICompany) |
---|
[8848] | 30 | grok.name('mandate') |
---|
| 31 | grok.require('waeup.Public') |
---|
| 32 | |
---|
| 33 | def update(self, *args, **kw): |
---|
| 34 | form = self.request.form |
---|
| 35 | mandate_id = form.get('mandate_id', None) |
---|
| 36 | if not mandate_id: |
---|
| 37 | self.flash(_('Misuse')) |
---|
| 38 | return |
---|
| 39 | mandates = grok.getSite()['mandates'] |
---|
| 40 | mandate = mandates.get(mandate_id, None) |
---|
| 41 | if mandate is None: |
---|
| 42 | self.flash(_('No mandate.')) |
---|
| 43 | return |
---|
| 44 | msg = mandate.execute() |
---|
[12816] | 45 | self.mandate_name = mandate.__class__.__name__ |
---|
[8848] | 46 | self.flash(msg) |
---|
| 47 | return |
---|
| 48 | |
---|
| 49 | def render(self): |
---|
[12816] | 50 | args = {'camefrom': self.mandate_name} |
---|
| 51 | self.redirect(self.url(self.context) + '/login?%s' % urlencode(args)) |
---|
[8848] | 52 | return |
---|