1 | ## $Id: payments.py 17730 2024-04-02 20:25: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 | """ |
---|
19 | Student payment components. |
---|
20 | """ |
---|
21 | import grok |
---|
22 | from datetime import datetime |
---|
23 | from zope.component import getUtility |
---|
24 | from zope.component.interfaces import IFactory |
---|
25 | from zope.interface import implementedBy |
---|
26 | from waeup.kofa.interfaces import IKofaUtils |
---|
27 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
28 | from waeup.kofa.students.payments import ( |
---|
29 | StudentOnlinePayment, StudentOnlinePaymentFactory) |
---|
30 | from waeup.kofa.utils.helpers import attrs_to_fields, to_timezone |
---|
31 | from kofacustom.nigeria.students.interfaces import INigeriaStudentOnlinePayment |
---|
32 | |
---|
33 | class NigeriaStudentOnlinePayment(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. |
---|
40 | """ |
---|
41 | grok.implements(INigeriaStudentOnlinePayment, IStudentNavigation) |
---|
42 | grok.provides(INigeriaStudentOnlinePayment) |
---|
43 | |
---|
44 | def __init__(self): |
---|
45 | super(NigeriaStudentOnlinePayment, self).__init__() |
---|
46 | return |
---|
47 | |
---|
48 | @property |
---|
49 | def student(self): |
---|
50 | try: |
---|
51 | return self.__parent__.__parent__ |
---|
52 | except AttributeError: |
---|
53 | return None |
---|
54 | |
---|
55 | |
---|
56 | @property |
---|
57 | def formatted_p_date(self): |
---|
58 | if isinstance(self.payment_date, datetime): |
---|
59 | tz = getUtility(IKofaUtils).tzinfo |
---|
60 | try: |
---|
61 | timestamp = to_timezone( |
---|
62 | self.payment_date, tz).strftime("%Y-%m-%d %H:%M:%S") |
---|
63 | except ValueError: |
---|
64 | return None |
---|
65 | return timestamp |
---|
66 | else: |
---|
67 | return None |
---|
68 | |
---|
69 | NigeriaStudentOnlinePayment = attrs_to_fields(NigeriaStudentOnlinePayment, |
---|
70 | omit=['display_item',]) |
---|
71 | |
---|
72 | class NigeriaStudentOnlinePaymentFactory(StudentOnlinePaymentFactory): |
---|
73 | """A factory for student online payments. |
---|
74 | """ |
---|
75 | |
---|
76 | def __call__(self, *args, **kw): |
---|
77 | return NigeriaStudentOnlinePayment() |
---|
78 | |
---|
79 | def getInterfaces(self): |
---|
80 | return implementedBy(NigeriaStudentOnlinePayment) |
---|