1 | ## $Id: payments.py 17747 2024-04-25 08:46:43Z 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 zope.component.interfaces import IFactory |
---|
23 | from zope.interface import implementedBy |
---|
24 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
25 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
26 | from kofacustom.nigeria.students.payments import ( |
---|
27 | NigeriaStudentOnlinePayment, NigeriaStudentOnlinePaymentFactory) |
---|
28 | from waeup.uniben.students.interfaces import ICustomStudentOnlinePayment |
---|
29 | from waeup.uniben.interfaces import MessageFactory as _ |
---|
30 | |
---|
31 | class CustomStudentOnlinePayment(NigeriaStudentOnlinePayment): |
---|
32 | """This is a custom online payment for students. |
---|
33 | |
---|
34 | Since this class inherits from StudentOnlinePayment, it automatically |
---|
35 | implements the interfaces of the parent class which means |
---|
36 | all viewlets and views meant for StudentOnlinePayment |
---|
37 | can also be accessed in the customized system. |
---|
38 | """ |
---|
39 | grok.implements(ICustomStudentOnlinePayment, IStudentNavigation) |
---|
40 | grok.provides(ICustomStudentOnlinePayment) |
---|
41 | |
---|
42 | def __init__(self): |
---|
43 | super(CustomStudentOnlinePayment, self).__init__() |
---|
44 | return |
---|
45 | |
---|
46 | @property |
---|
47 | def student(self): |
---|
48 | return self.__parent__.__parent__ |
---|
49 | |
---|
50 | def doAfterStudentPayment(self): |
---|
51 | """Process student after payment was made. |
---|
52 | """ |
---|
53 | if self.p_current: |
---|
54 | error = self.redeemTicket() |
---|
55 | if error is not None: |
---|
56 | return 'danger', error, error |
---|
57 | # Uniben allows also previous session students to book a bed |
---|
58 | if self.p_category == 'bed_allocation': |
---|
59 | error = self.redeemTicket() |
---|
60 | if error is not None: |
---|
61 | return 'danger', error, error |
---|
62 | log = 'successful %s payment: %s' % (self.p_category, self.p_id) |
---|
63 | msg = _('Payment successfully completed') |
---|
64 | if self.p_category in ('schoolfee',): |
---|
65 | msg += _('. Please proceed to library clearance, register your ' |
---|
66 | 'courses online and proceed to your ' |
---|
67 | 'level course adviser for validation.') |
---|
68 | flashtype = 'success' |
---|
69 | return flashtype, msg, log |
---|
70 | |
---|
71 | CustomStudentOnlinePayment = attrs_to_fields( |
---|
72 | CustomStudentOnlinePayment, omit=['display_item']) |
---|
73 | |
---|
74 | class CustomStudentOnlinePaymentFactory(NigeriaStudentOnlinePaymentFactory): |
---|
75 | """A factory for student online payments. |
---|
76 | """ |
---|
77 | |
---|
78 | def __call__(self, *args, **kw): |
---|
79 | return CustomStudentOnlinePayment() |
---|
80 | |
---|
81 | def getInterfaces(self): |
---|
82 | return implementedBy(CustomStudentOnlinePayment) |
---|