source: main/waeup.kofa/trunk/src/waeup/kofa/payments/interfaces.py @ 10030

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

Use better class names. The PaymentWebservice? adapter is not a webservice. KofaPaymentRequest? is not a request but a view for a simple web service.

We do not publish the data of the payee but of the payer.

  • Property svn:keywords set to Id
File size: 4.0 KB
Line 
1## $Id: interfaces.py 10030 2013-03-17 08:40: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##
18from zope.interface import Attribute
19from zope import schema
20from waeup.kofa.university.vocabularies import ContextualDictSourceFactoryBase
21from waeup.kofa.interfaces import (
22    IKofaObject, SimpleKofaVocabulary, academic_sessions_vocab)
23from waeup.kofa.interfaces import MessageFactory as _
24
25payment_states = SimpleKofaVocabulary(
26    (_('Not yet paid'),'unpaid'),
27    (_('Paid'),'paid'),
28    (_('Failed'),'failed'),
29    )
30
31class PaymentCategorySource(ContextualDictSourceFactoryBase):
32    """A payment category source delivers all categories of payments.
33
34    """
35    #: name of dict to deliver from kofa utils.
36    DICT_NAME = 'PAYMENT_CATEGORIES'
37
38class IPaymentsContainer(IKofaObject):
39    """A container for all kind of payment objects.
40
41    """
42
43class IPayment(IKofaObject):
44    """A base representation of payments.
45
46    """
47    p_id = Attribute('Payment identifier')
48
49    p_category = schema.Choice(
50        title = _(u'Payment Category'),
51        default = u'schoolfee',
52        source = PaymentCategorySource(),
53        required = True,
54        )
55
56    p_item = schema.TextLine(
57        title = u'',
58        default = None,
59        required = False,
60        )
61
62    display_item = schema.TextLine(
63        title = _(u'Payment Item'),
64        required = False,
65        readonly = True,
66        )
67
68    p_session = schema.Choice(
69        title = _(u'Payment Session'),
70        source = academic_sessions_vocab,
71        required = True,
72        )
73
74    p_state = schema.Choice(
75        title = _(u'Payment State'),
76        default = u'unpaid',
77        vocabulary = payment_states,
78        required = True,
79        )
80
81    creation_date = schema.Datetime(
82        title = _(u'Ticket Creation Date'),
83        readonly = False,
84        required = False,
85        )
86
87    payment_date = schema.Datetime(
88        title = _(u'Payment Date'),
89        required = False,
90        readonly = False,
91        )
92
93    amount_auth = schema.Float(
94        title = _(u'Amount Authorized'),
95        default = 0.0,
96        required = True,
97        readonly = False,
98        )
99
100class IOnlinePayment(IPayment):
101    """A payment via payment gateways.
102
103    """
104
105    ac = schema.TextLine(
106        title = _(u'Activation Code'),
107        default = None,
108        required = False,
109        readonly = False,
110        )
111
112    r_amount_approved = schema.Float(
113        title = _(u'Response Amount Approved'),
114        default = 0.0,
115        required = False,
116        readonly = False,
117        )
118
119    r_code = schema.TextLine(
120        title = _(u'Response Code'),
121        default = None,
122        required = False,
123        readonly = False,
124        )
125
126    r_desc = schema.TextLine(
127        title = _(u'Response Description'),
128        default = None,
129        required = False,
130        readonly = False,
131        )
132
133    def approve():
134        "Approve an online payment and set to paid."
135
136class IPayer(IKofaObject):
137    """An interface for an adapter to publish student and applicant data
138    through a simple webservice.
139
140    """
141    display_fullname = Attribute('Name of  payer')
142    id = Attribute('Id of payer')
143    reg_number = Attribute('Reg number of payer')
144    matric_number = Attribute('Matric number of payer')
145    faculty = Attribute('Faculty of payer')
146    department = Attribute('Department of payer')
Note: See TracBrowser for help on using the repository browser.