1 | ## $Id: payments.py 8247 2012-04-22 12:56:07Z 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 | """ |
---|
19 | Student payment components. |
---|
20 | """ |
---|
21 | import grok |
---|
22 | from zope.component.interfaces import IFactory |
---|
23 | from zope.interface import implementedBy |
---|
24 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
25 | from waeup.kofa.payments import PaymentsContainer, OnlinePayment |
---|
26 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
27 | from waeup.uniben.students.interfaces import ICustomStudentOnlinePayment |
---|
28 | |
---|
29 | class CustomStudentOnlinePayment(OnlinePayment): |
---|
30 | """This is an online payment. |
---|
31 | """ |
---|
32 | grok.implements(ICustomStudentOnlinePayment, IStudentNavigation) |
---|
33 | grok.provides(ICustomStudentOnlinePayment) |
---|
34 | |
---|
35 | def __init__(self): |
---|
36 | super(CustomStudentOnlinePayment, self).__init__() |
---|
37 | return |
---|
38 | |
---|
39 | def getStudent(self): |
---|
40 | return self.__parent__.__parent__ |
---|
41 | |
---|
42 | CustomStudentOnlinePayment = attrs_to_fields(CustomStudentOnlinePayment) |
---|
43 | |
---|
44 | # Student online payments must be importable. So we might need a factory. |
---|
45 | class CustomStudentOnlinePaymentFactory(grok.GlobalUtility): |
---|
46 | """A factory for student online payments. |
---|
47 | """ |
---|
48 | grok.implements(IFactory) |
---|
49 | grok.name(u'waeup.CustomStudentOnlinePayment') |
---|
50 | title = u"Create a new online payment.", |
---|
51 | description = u"This factory instantiates new online payment instances." |
---|
52 | |
---|
53 | def __call__(self, *args, **kw): |
---|
54 | return CustomStudentOnlinePayment() |
---|
55 | |
---|
56 | def getInterfaces(self): |
---|
57 | return implementedBy(CustomStudentOnlinePayment) |
---|