source: main/waeup.aaue/trunk/src/waeup/aaue/students/viewlets.py @ 11865

Last change on this file since 11865 was 11626, checked in by Henrik Bettermann, 10 years ago

Repair GetMatricNumberActionButton?.

  • Property svn:keywords set to Id
File size: 2.6 KB
Line 
1## $Id: viewlets.py 11626 2014-05-07 09:47:17Z 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
19import grok
20from zope.component import getUtility
21from waeup.kofa.students.interfaces import IStudent, IStudentsUtils
22from waeup.kofa.students.workflow import PAID
23from waeup.kofa.students.viewlets import (
24    AddPreviousPaymentActionButton, AddBalancePaymentActionButton,
25    ManageActionButton, StudentBaseDisplayFormPage)
26
27from waeup.aaue.interfaces import MessageFactory as _
28
29class AddPreviousPaymentActionButton(AddPreviousPaymentActionButton):
30
31    @property
32    def target_url(self):
33        return ''
34
35class AddBalancePaymentActionButton(AddBalancePaymentActionButton):
36
37    @property
38    def target_url(self):
39        return ''
40
41class GetMatricNumberActionButton(ManageActionButton):
42    grok.order(10)
43    grok.context(IStudent)
44    grok.view(StudentBaseDisplayFormPage)
45    grok.require('waeup.viewStudent')
46    #grok.require('waeup.manageStudent')
47    icon = 'actionicon_count.png'
48    text = _('Get Matriculation Number')
49
50    @property
51    def target_url(self):
52        students_utils = getUtility(IStudentsUtils)
53        if self.context.matric_number:
54            return ''
55        error, matric_number = students_utils.constructMatricNumber(self.context)
56        if error:
57            return ''
58        return self.view.url(self.view.context, 'get_matric_number')
59
60class MatricNumberSlipActionButton(ManageActionButton):
61    grok.order(10)
62    grok.context(IStudent)
63    grok.view(StudentBaseDisplayFormPage)
64    grok.require('waeup.viewStudent')
65    icon = 'actionicon_pdf.png'
66    text = _('Download matriculation number slip')
67    target = 'matric_number_slip.pdf'
68
69    @property
70    def target_url(self):
71        if self.context.state not in (PAID,) or not self.context.is_fresh \
72            or not self.context.matric_number:
73            return ''
74        return self.view.url(self.view.context, self.target)
Note: See TracBrowser for help on using the repository browser.