source: main/waeup.kofa/trunk/src/waeup/kofa/students/payments.py @ 12568

Last change on this file since 12568 was 11583, checked in by Henrik Bettermann, 10 years ago

Fix punctuation error.

  • Property svn:keywords set to Id
File size: 6.6 KB
Line 
1## $Id: payments.py 11583 2014-04-04 08:44:59Z 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.interfaces import MessageFactory as _
25from waeup.kofa.students.interfaces import (
26    IStudentPaymentsContainer, IStudentNavigation, IStudentOnlinePayment)
27from waeup.kofa.payments import PaymentsContainer, OnlinePayment
28from waeup.kofa.payments.interfaces import IPayer
29from waeup.kofa.utils.helpers import attrs_to_fields
30from waeup.kofa.accesscodes import create_accesscode
31
32class StudentPaymentsContainer(PaymentsContainer):
33    """This is a container for student payments.
34    """
35    grok.implements(IStudentPaymentsContainer, IStudentNavigation)
36    grok.provides(IStudentPaymentsContainer)
37
38    def __init__(self):
39        super(StudentPaymentsContainer, self).__init__()
40        return
41
42    @property
43    def student(self):
44        return self.__parent__
45
46    def writeLogMessage(self, view, message):
47        return self.__parent__.writeLogMessage(view, message)
48
49StudentPaymentsContainer = attrs_to_fields(StudentPaymentsContainer)
50
51class StudentOnlinePayment(OnlinePayment):
52    """This is an online payment.
53    """
54    grok.implements(IStudentOnlinePayment, IStudentNavigation)
55    grok.provides(IStudentOnlinePayment)
56
57    def __init__(self):
58        super(StudentOnlinePayment, self).__init__()
59        return
60
61    @property
62    def student(self):
63        try:
64            return self.__parent__.__parent__
65        except AttributeError:
66            return None
67
68    def writeLogMessage(self, view, message):
69        return self.__parent__.__parent__.writeLogMessage(view, message)
70
71    def _createActivationCodes(self):
72        student = self.student
73        if self.p_category == 'clearance':
74            # Create CLR access code
75            pin, error = create_accesscode(
76                'CLR',0,self.amount_auth,student.student_id)
77            if error:
78                return error
79            self.ac = pin
80        elif self.p_category in ('schoolfee', 'schoolfee_1'):
81            # Create SFE access code
82            pin, error = create_accesscode(
83                'SFE',0,self.amount_auth,student.student_id)
84            if error:
85                return error
86            self.ac = pin
87        elif self.p_category == 'bed_allocation':
88            # Create HOS access code
89            pin, error = create_accesscode(
90                'HOS',0,self.amount_auth,student.student_id)
91            if error:
92                return error
93            self.ac = pin
94        elif self.p_category == 'transcript':
95            # Create TSC access code
96            pin, error = create_accesscode(
97                'TSC',0,self.amount_auth,student.student_id)
98            if error:
99                return error
100            self.ac = pin
101        return None
102
103    def doAfterStudentPayment(self):
104        """Process student after payment was made.
105        """
106        if self.p_current:
107            error = self._createActivationCodes()
108            if error is not None:
109                return 'danger', error, error
110        log = 'successful %s payment: %s' % (self.p_category, self.p_id)
111        msg = _('Successful payment')
112        flashtype = 'success'
113        return flashtype, msg, log
114
115    def doAfterStudentPaymentApproval(self):
116        """Process student after payment was approved.
117        """
118        if self.p_current:
119            error = self._createActivationCodes()
120            if error is not None:
121                return 'danger', error, error
122        log = '%s payment approved: %s' % (self.p_category, self.p_id)
123        msg = _('Payment approved.')
124        flashtype = 'success'
125        return flashtype, msg, log
126
127    def approveStudentPayment(self):
128        """Approve payment and process student.
129        """
130        if self.p_state == 'paid':
131            return 'warning', _('This ticket has already been paid.'), None
132        self.approve()
133        return self.doAfterStudentPaymentApproval()
134
135
136StudentOnlinePayment = attrs_to_fields(
137    StudentOnlinePayment, omit=['display_item'])
138
139class Payer(grok.Adapter):
140    """An adapter to publish student data through a simple webservice.
141    """
142    grok.context(IStudentOnlinePayment)
143    grok.implements(IPayer)
144
145    @property
146    def display_fullname(self):
147        "Name of  payer"
148        return self.context.student.display_fullname
149
150    @property
151    def id(self):
152        "Id of payer"
153        return self.context.student.student_id
154
155    @property
156    def matric_number(self):
157        "Matric number or reg number of payer"
158        return self.context.student.matric_number
159
160    @property
161    def reg_number(self):
162        "Reg number or reg number of payer"
163        return self.context.student.reg_number
164
165    @property
166    def faculty(self):
167        "Faculty of payer"
168        return self.context.student.faccode
169
170    @property
171    def department(self):
172        "Department of payer"
173        return self.context.student.depcode
174
175    @property
176    def email(self):
177        "Email of payer"
178        return self.context.student.email
179
180    @property
181    def phone(self):
182        "Phone number of payer"
183        return self.context.student.phone
184
185    @property
186    def current_mode(self):
187        "Current study mode of payer"
188        return self.context.student.current_mode
189
190    @property
191    def current_level(self):
192        "Current level of payer"
193        return self.context.student.current_level
194
195# Student online payments must be importable. So we might need a factory.
196class StudentOnlinePaymentFactory(grok.GlobalUtility):
197    """A factory for student online payments.
198    """
199    grok.implements(IFactory)
200    grok.name(u'waeup.StudentOnlinePayment')
201    title = u"Create a new online payment.",
202    description = u"This factory instantiates new online payment instances."
203
204    def __call__(self, *args, **kw):
205        return StudentOnlinePayment()
206
207    def getInterfaces(self):
208        return implementedBy(StudentOnlinePayment)
Note: See TracBrowser for help on using the repository browser.