source: main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/students/viewlets.py @ 10691

Last change on this file since 10691 was 10691, checked in by Henrik Bettermann, 11 years ago

Add Admission Notification Slip. The notification can be downloaded before payment, the slip after payment of school fee.

The difference between an admission slip/letter and a notification is still not clear.

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
1## $Id: viewlets.py 10691 2013-11-04 09:19:39Z 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 waeup.kofa.students.viewlets import (
21    AddPreviousPaymentActionButton, AddBalancePaymentActionButton,
22    ManageActionButton)
23from waeup.kofa.students.interfaces import IStudent
24from waeup.kofa.students.browser import StudentBaseDisplayFormPage
25from waeup.kofa.students.workflow import (
26    ADMITTED, PAID, REQUESTED, RETURNING, CLEARED, REGISTERED,
27    VALIDATED, GRADUATED, TRANSCRIPT, CREATED, CLEARANCE)
28from waeup.kwarapoly.interfaces import MessageFactory as _
29
30class AddPreviousPaymentActionButton(AddPreviousPaymentActionButton):
31
32    @property
33    def target_url(self):
34        return ''
35
36class AddBalancePaymentActionButton(AddBalancePaymentActionButton):
37
38    @property
39    def target_url(self):
40        return ''
41
42class AdmissionNotificationActionButton(ManageActionButton):
43    grok.order(4)
44    grok.context(IStudent)
45    grok.view(StudentBaseDisplayFormPage)
46    grok.require('waeup.viewStudent')
47    icon = 'actionicon_pdf.png'
48    text = _('Download admission notification')
49    target = 'admission_notification.pdf'
50
51    @property
52    def target_url(self):
53        if self.context.state not in (ADMITTED, CLEARANCE, REQUESTED, CLEARED):
54            return ''
55        return self.view.url(self.view.context, self.target)
56
57class AdmissionSlipActionButton(ManageActionButton):
58    grok.order(4)
59    grok.context(IStudent)
60    grok.view(StudentBaseDisplayFormPage)
61    grok.require('waeup.viewStudent')
62    icon = 'actionicon_pdf.png'
63    text = _('Download admission letter')
64    target = 'admission_slip.pdf'
65
66    @property
67    def target_url(self):
68        if self.context.state in (CREATED, ADMITTED,
69                                  CLEARANCE, REQUESTED, CLEARED):
70            return ''
71        return self.view.url(self.view.context, self.target)
Note: See TracBrowser for help on using the repository browser.