source: main/waeup.kofa/trunk/src/waeup/kofa/payments/payment.py @ 9405

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

Make payment categories more easily customizable.

  • Property svn:keywords set to Id
File size: 3.0 KB
Line 
1## $Id: payment.py 9405 2012-10-24 21:31:48Z 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"""
19These are the payment tickets.
20"""
21import grok
22from datetime import datetime
23from grok import index
24from zope.component import getUtility
25from zope.i18n import translate
26from waeup.kofa.interfaces import IKofaUtils
27from waeup.kofa.interfaces import MessageFactory as _
28from waeup.kofa.payments.interfaces import (
29    IPayment, ISCPayment, IOnlinePayment,
30    payment_states)
31from waeup.kofa.utils.helpers import attrs_to_fields, get_current_principal
32
33class Payment(grok.Container):
34    """This is a payment.
35    """
36    grok.implements(IPayment)
37    grok.provides(IPayment)
38    grok.baseclass()
39
40    def __init__(self):
41        super(Payment, self).__init__()
42        self.creation_date = datetime.utcnow()
43        self.p_id = None
44        return
45
46    @property
47    def state(self):
48        return payment_states.getTermByToken(self.p_state).title
49
50    @property
51    def category(self):
52        utils = getUtility(IKofaUtils)
53        return utils.PAYMENT_CATEGORIES[self.p_category]
54
55# not used
56class SCPayment(Payment):
57    """This is a scratch card payment.
58    """
59    grok.implements(ISCPayment)
60    grok.provides(ISCPayment)
61
62    def __init__(self):
63        super(SCPayment, self).__init__()
64        p_id = None
65        return
66
67SCPayment = attrs_to_fields(SCPayment)
68
69class OnlinePayment(Payment):
70    """This is an online payment.
71    """
72    grok.implements(IOnlinePayment)
73    grok.provides(IOnlinePayment)
74
75    def __init__(self):
76        super(OnlinePayment, self).__init__()
77        p_id = None
78        return
79
80    def approve(self):
81        "Approve online payment and set to paid."
82        self.r_amount_approved = self.amount_auth
83        self.r_code = u'AP'
84        self.p_state = 'paid'
85        user = get_current_principal()
86        if user is None:
87            # in tests
88            usertitle = 'system'
89        else:
90            usertitle = getattr(user, 'public_name', None)
91            if not usertitle:
92                usertitle = user.title
93        r_desc = _('Payment approved by ${a}', mapping = {'a': usertitle})
94        portal_language = getUtility(IKofaUtils).PORTAL_LANGUAGE
95        self.r_desc = translate(r_desc, 'waeup.kofa',
96            target_language=portal_language)
97        self.payment_date = datetime.utcnow()
98        return
99
100OnlinePayment = attrs_to_fields(OnlinePayment)
Note: See TracBrowser for help on using the repository browser.