1 | ## $Id: payment.py 16721 2021-11-24 07:26:21Z henrik $ |
---|
2 | ## |
---|
3 | ## Copyright (C) 2012 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 | Application fee payment. |
---|
20 | """ |
---|
21 | import grok |
---|
22 | from zope.component.interfaces import IFactory |
---|
23 | from zope.interface import implementedBy |
---|
24 | from waeup.kofa.applicants.payment import ApplicantOnlinePayment |
---|
25 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
26 | from kofacustom.unidel.applicants.interfaces import ICustomApplicantOnlinePayment |
---|
27 | |
---|
28 | class CustomApplicantOnlinePayment(ApplicantOnlinePayment): |
---|
29 | """This is a custom online payment for applicants. |
---|
30 | |
---|
31 | Since this class inherits from ApplicantOnlinePayment, it automatically |
---|
32 | implements the interfaces of the parent class which means |
---|
33 | all viewlets and views meant for StudentOnlinePayment |
---|
34 | can also be accessed in the customized system. |
---|
35 | """ |
---|
36 | grok.implements(ICustomApplicantOnlinePayment) |
---|
37 | grok.provides(ICustomApplicantOnlinePayment) |
---|
38 | |
---|
39 | def __init__(self): |
---|
40 | super(CustomApplicantOnlinePayment, self).__init__() |
---|
41 | return |
---|
42 | |
---|
43 | CustomApplicantOnlinePayment = attrs_to_fields( |
---|
44 | CustomApplicantOnlinePayment, omit=['display_item']) |
---|
45 | |
---|
46 | # Applicant online payments must be importable. So we might need a factory. |
---|
47 | class CustomApplicantOnlinePaymentFactory(grok.GlobalUtility): |
---|
48 | """A factory for applicant online payments. |
---|
49 | """ |
---|
50 | grok.implements(IFactory) |
---|
51 | grok.name(u'waeup.ApplicantOnlinePayment') |
---|
52 | title = u"Create a new online payment.", |
---|
53 | description = u"This factory instantiates new online payment instances." |
---|
54 | |
---|
55 | def __call__(self, *args, **kw): |
---|
56 | return CustomApplicantOnlinePayment() |
---|
57 | |
---|
58 | def getInterfaces(self): |
---|
59 | return implementedBy(CustomApplicantOnlinePayment) |
---|