source: main/waeup.kwarapoly/trunk/src/waeup/kwarapoly/applicants/payment.py @ 11573

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

Fix test_webservice.

  • Property svn:keywords set to Id
File size: 3.3 KB
RevLine 
[8247]1## $Id: payment.py 11573 2014-04-03 16:19:43Z 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]19Application fee payment.
[8247]20"""
21import grok
22from zope.component.interfaces import IFactory
23from zope.interface import implementedBy
[8421]24from waeup.kofa.applicants.payment import ApplicantOnlinePayment
[8247]25from waeup.kofa.utils.helpers import attrs_to_fields
[9347]26from waeup.kwarapoly.applicants.interfaces import ICustomApplicantOnlinePayment
[8247]27
[8421]28class 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.
[8247]35    """
36    grok.implements(ICustomApplicantOnlinePayment)
37    grok.provides(ICustomApplicantOnlinePayment)
38
39    def __init__(self):
40        super(CustomApplicantOnlinePayment, self).__init__()
41        return
42
[11573]43    def doAfterApplicantPaymentApproval(self):
44        """Process applicant after payment was approved.
45
46        We do not set applicant to paid in case of special payments.
47        """
48        wf_info = IWorkflowInfo(self.__parent__)
49        try:
50            wf_info.fireTransition('approve')
51        except InvalidTransitionError:
52            msg = log = 'Error: %s' % sys.exc_info()[1]
53            return msg, log
54        log = 'payment approved: %s' % self.p_id
55        msg = _('Payment approved')
56        return msg, log
57
58    def doAfterApplicantPayment(self):
59        """Process applicant after payment was made.
60
61        We do not set applicant to paid in case of special payments.
62        """
63        wf_info = IWorkflowInfo(self.__parent__)
64        try:
65            wf_info.fireTransition('pay')
66        except InvalidTransitionError:
67            msg = log = 'Error: %s' % sys.exc_info()[1]
68            return msg, log
69        log = 'successful payment: %s' % self.p_id
70        msg = _('Successful payment')
71        return msg, log
72
[9992]73CustomApplicantOnlinePayment = attrs_to_fields(
74    CustomApplicantOnlinePayment, omit=['display_item'])
[8247]75
76# Applicant online payments must be importable. So we might need a factory.
77class CustomApplicantOnlinePaymentFactory(grok.GlobalUtility):
78    """A factory for applicant online payments.
79    """
80    grok.implements(IFactory)
[8933]81    grok.name(u'waeup.ApplicantOnlinePayment')
[8247]82    title = u"Create a new online payment.",
83    description = u"This factory instantiates new online payment instances."
84
85    def __call__(self, *args, **kw):
86        return CustomApplicantOnlinePayment()
87
88    def getInterfaces(self):
89        return implementedBy(CustomApplicantOnlinePayment)
Note: See TracBrowser for help on using the repository browser.