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

Last change on this file since 11574 was 11574, checked in by Henrik Bettermann, 10 years ago

Add webservice test for applicants. Start customization of doAfterApplicantPaymentApproval and doAfterApplicantPayment.

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