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