source: main/kofacustom.edopoly/trunk/src/kofacustom/edopoly/applicants/payment.py @ 15429

Last change on this file since 15429 was 15386, checked in by Henrik Bettermann, 5 years ago

Add missing import.

Adjust test.

  • Property svn:keywords set to Id
File size: 3.8 KB
Line 
1## $Id: payment.py 15386 2019-04-04 10:57:25Z 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"""
19Application fee payment.
20"""
21import grok
22import sys
23from hurry.workflow.interfaces import (
24    IWorkflowInfo, InvalidTransitionError)
25from zope.component.interfaces import IFactory
26from zope.interface import implementedBy
27from waeup.kofa.applicants.payment import ApplicantOnlinePayment
28from waeup.kofa.applicants.workflow import PAID
29from waeup.kofa.utils.helpers import attrs_to_fields
30from kofacustom.edopoly.applicants.interfaces import ICustomApplicantOnlinePayment
31from kofacustom.edopoly.interfaces import MessageFactory as _
32
33class 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    def doAfterApplicantPaymentApproval(self):
49        """Process applicant after payment was approved.
50        """
51        if not (self.__parent__.special and self.__parent__.state == PAID) \
52            and self.p_category != 'admission_checking':
53            wf_info = IWorkflowInfo(self.__parent__)
54            try:
55                wf_info.fireTransition('approve')
56            except InvalidTransitionError:
57                msg = log = 'Error: %s' % sys.exc_info()[1]
58                return 'danger', msg, log
59        log = 'approved: %s' % self.p_id
60        msg = _('Payment approved')
61        flashtype = 'success'
62        return flashtype, msg, log
63
64    def doAfterApplicantPayment(self):
65        """Process applicant after payment was made.
66        """
67        if not (self.__parent__.special and self.__parent__.state == PAID) \
68            and self.p_category != 'admission_checking':
69            wf_info = IWorkflowInfo(self.__parent__)
70            try:
71                wf_info.fireTransition('pay')
72            except InvalidTransitionError:
73                msg = log = 'Error: %s' % sys.exc_info()[1]
74                return 'danger', msg, log
75        log = 'successful payment: %s' % self.p_id
76        msg = _('Successful payment')
77        flashtype = 'success'
78        return flashtype, msg, log
79
80CustomApplicantOnlinePayment = attrs_to_fields(
81    CustomApplicantOnlinePayment, omit=['display_item'])
82
83# Applicant online payments must be importable. So we might need a factory.
84class CustomApplicantOnlinePaymentFactory(grok.GlobalUtility):
85    """A factory for applicant online payments.
86    """
87    grok.implements(IFactory)
88    grok.name(u'waeup.ApplicantOnlinePayment')
89    title = u"Create a new online payment.",
90    description = u"This factory instantiates new online payment instances."
91
92    def __call__(self, *args, **kw):
93        return CustomApplicantOnlinePayment()
94
95    def getInterfaces(self):
96        return implementedBy(CustomApplicantOnlinePayment)
Note: See TracBrowser for help on using the repository browser.