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