1 | ## $Id: interfaces.py 9774 2012-12-06 08:39:26Z 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 | from zope.interface import Attribute |
---|
19 | from zope import schema |
---|
20 | from waeup.kofa.interfaces import SimpleKofaVocabulary |
---|
21 | from waeup.kofa.payments.interfaces import IPayment |
---|
22 | from kofacustom.nigeria.interfaces import MessageFactory as _ |
---|
23 | |
---|
24 | class INigeriaOnlinePayment(IPayment): |
---|
25 | """A payment via payment gateways. |
---|
26 | |
---|
27 | """ |
---|
28 | |
---|
29 | ac = schema.TextLine( |
---|
30 | title = _(u'Activation Code'), |
---|
31 | default = None, |
---|
32 | required = False, |
---|
33 | readonly = False, |
---|
34 | ) |
---|
35 | |
---|
36 | r_amount_approved = schema.Float( |
---|
37 | title = _(u'Response Amount Approved'), |
---|
38 | default = 0.0, |
---|
39 | required = False, |
---|
40 | readonly = False, |
---|
41 | ) |
---|
42 | |
---|
43 | r_code = schema.TextLine( |
---|
44 | title = _(u'Response Code'), |
---|
45 | default = None, |
---|
46 | required = False, |
---|
47 | readonly = False, |
---|
48 | ) |
---|
49 | |
---|
50 | r_desc = schema.TextLine( |
---|
51 | title = _(u'Response Description'), |
---|
52 | default = None, |
---|
53 | required = False, |
---|
54 | readonly = False, |
---|
55 | ) |
---|
56 | |
---|
57 | # Only defined in kofacustom.nigeria package |
---|
58 | |
---|
59 | r_pay_reference = schema.TextLine( |
---|
60 | title = _(u'Response Payment Reference'), |
---|
61 | default = None, |
---|
62 | required = False, |
---|
63 | readonly = False, |
---|
64 | ) |
---|
65 | |
---|
66 | r_card_num = schema.TextLine( |
---|
67 | title = _(u'Response Card Number'), |
---|
68 | default = None, |
---|
69 | required = False, |
---|
70 | readonly = False, |
---|
71 | ) |
---|
72 | |
---|
73 | r_company = schema.Choice( |
---|
74 | title = _(u'Payment Gateway'), |
---|
75 | default = None, |
---|
76 | required = False, |
---|
77 | readonly = False, |
---|
78 | vocabulary = SimpleKofaVocabulary( |
---|
79 | (_('Interswitch'), 'interswitch'), |
---|
80 | (_('eTranzact'), 'etranzact'), |
---|
81 | (_('Scratch Card'), 'sc'),) |
---|
82 | ) |
---|
83 | |
---|
84 | provider_amt = schema.Float( |
---|
85 | title = _(u'BT Amount'), |
---|
86 | default = 0.0, |
---|
87 | required = False, |
---|
88 | readonly = False, |
---|
89 | ) |
---|
90 | |
---|
91 | gateway_amt = schema.Float( |
---|
92 | title = _(u'Gateway Amount'), |
---|
93 | default = 0.0, |
---|
94 | required = False, |
---|
95 | readonly = False, |
---|
96 | ) |
---|
97 | |
---|
98 | thirdparty_amt = schema.Float( |
---|
99 | title = _(u'Third Party Amount'), |
---|
100 | default = 0.0, |
---|
101 | required = False, |
---|
102 | readonly = False, |
---|
103 | ) |
---|
104 | |
---|