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

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

doAfterApplicantPaymentApproval and doAfterApplicantPayment are no longer necessary because of changes in base package.

  • Property svn:keywords set to Id
File size: 2.5 KB
Line 
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"""
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
48CustomApplicantOnlinePayment = attrs_to_fields(
49    CustomApplicantOnlinePayment, omit=['display_item'])
50
51# Applicant online payments must be importable. So we might need a factory.
52class 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)
Note: See TracBrowser for help on using the repository browser.