source: main/waeup.fceokene/trunk/src/waeup/uniben/students/payments.py @ 8459

Last change on this file since 8459 was 8421, checked in by Henrik Bettermann, 12 years ago

Implement payment approval in waeup.uniben.

  • Property svn:keywords set to Id
File size: 2.4 KB
Line 
1## $Id: payments.py 8421 2012-05-11 15:46:29Z henrik $
2##
3## Copyright (C) 2011 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"""
19Student payment components.
20"""
21import grok
22from zope.component.interfaces import IFactory
23from zope.interface import implementedBy
24from waeup.kofa.students.interfaces import IStudentNavigation
25from waeup.kofa.students.payments import StudentOnlinePayment
26from waeup.kofa.utils.helpers import attrs_to_fields
27from waeup.uniben.students.interfaces import ICustomStudentOnlinePayment
28
29class CustomStudentOnlinePayment(StudentOnlinePayment):
30    """This is a custom online payment for students.
31
32    Since this class inherits from StudentOnlinePayment, it automatically
33    implements the interfaces of the parent class which means
34    all viewlets and views meant for StudentOnlinePayment
35    can also be accessed in the customized system.
36    """
37    grok.implements(ICustomStudentOnlinePayment, IStudentNavigation)
38    grok.provides(ICustomStudentOnlinePayment)
39
40    def __init__(self):
41        super(CustomStudentOnlinePayment, self).__init__()
42        return
43
44    def getStudent(self):
45        return self.__parent__.__parent__
46
47CustomStudentOnlinePayment = attrs_to_fields(CustomStudentOnlinePayment)
48
49# Student online payments must be importable. So we might need a factory.
50class CustomStudentOnlinePaymentFactory(grok.GlobalUtility):
51    """A factory for student online payments.
52    """
53    grok.implements(IFactory)
54    grok.name(u'waeup.CustomStudentOnlinePayment')
55    title = u"Create a new online payment.",
56    description = u"This factory instantiates new online payment instances."
57
58    def __call__(self, *args, **kw):
59        return CustomStudentOnlinePayment()
60
61    def getInterfaces(self):
62        return implementedBy(CustomStudentOnlinePayment)
Note: See TracBrowser for help on using the repository browser.