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

Last change on this file since 13599 was 13583, checked in by Henrik Bettermann, 9 years ago

Implement first draft of bursary clearance slip.

  • Property svn:keywords set to Id
File size: 2.7 KB
RevLine 
[8247]1## $Id: payments.py 13583 2016-01-10 22:18:06Z 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
[13583]22from datetime import datetime
23from zope.component import getUtility
[8247]24from zope.component.interfaces import IFactory
25from zope.interface import implementedBy
[13583]26from waeup.kofa.interfaces import IKofaUtils
[8247]27from waeup.kofa.students.interfaces import IStudentNavigation
[8715]28from waeup.kofa.students.payments import (
29    StudentOnlinePayment, StudentOnlinePaymentFactory)
[13583]30from waeup.kofa.utils.helpers import attrs_to_fields, to_timezone
[8247]31from waeup.uniben.students.interfaces import ICustomStudentOnlinePayment
32
[8421]33class CustomStudentOnlinePayment(StudentOnlinePayment):
34    """This is a custom online payment for students.
35
36    Since this class inherits from StudentOnlinePayment, 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.
[8247]40    """
41    grok.implements(ICustomStudentOnlinePayment, IStudentNavigation)
42    grok.provides(ICustomStudentOnlinePayment)
43
44    def __init__(self):
45        super(CustomStudentOnlinePayment, self).__init__()
46        return
47
[8741]48    @property
49    def student(self):
[8247]50        return self.__parent__.__parent__
51
[13583]52    @property
53    def formatted_p_date(self):
54        if isinstance(self.payment_date, datetime):
55            tz = getUtility(IKofaUtils).tzinfo
56            try:
57                timestamp = to_timezone(
58                    self.payment_date, tz).strftime("%Y-%m-%d %H:%M:%S")
59            except ValueError:
60                return None
61            return timestamp
62        else:
63            return None
64
[9993]65CustomStudentOnlinePayment = attrs_to_fields(
66    CustomStudentOnlinePayment, omit=['display_item'])
[8247]67
[8715]68class CustomStudentOnlinePaymentFactory(StudentOnlinePaymentFactory):
[8247]69    """A factory for student online payments.
70    """
71
72    def __call__(self, *args, **kw):
73        return CustomStudentOnlinePayment()
74
75    def getInterfaces(self):
76        return implementedBy(CustomStudentOnlinePayment)
Note: See TracBrowser for help on using the repository browser.