[IMP]remove tabs and add spaces instead of them
[odoo/odoo.git] / addons / point_of_sale / wizard / pos_payment.py
1 # -*- coding: utf-8 -*-
2 ##############################################################################
3 #
4 #    OpenERP, Open Source Management Solution
5 #    Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
6 #
7 #    This program is free software: you can redistribute it and/or modify
8 #    it under the terms of the GNU Affero General Public License as
9 #    published by the Free Software Foundation, either version 3 of the
10 #    License, or (at your option) any later version.
11 #
12 #    This program is distributed in the hope that it will be useful,
13 #    but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #    GNU Affero General Public License for more details.
16 #
17 #    You should have received a copy of the GNU Affero General Public License
18 #    along with this program.  If not, see <http://www.gnu.org/licenses/>.
19 #
20 ##############################################################################
21
22 import time
23
24 from osv import osv, fields
25 from tools.translate import _
26 import pos_box_entries
27 import netsvc
28
29
30 class pos_make_payment(osv.osv_memory):
31     _name = 'pos.make.payment'
32     _description = 'Point of Sale Payment'
33     def check(self, cr, uid, ids, context=None):
34         """Check the order:
35         if the order is not paid: continue payment,
36         if the order is paid print ticket.
37         """
38         context = context or {}
39         order_obj = self.pool.get('pos.order')
40         obj_partner = self.pool.get('res.partner')
41         active_id = context and context.get('active_id', False)
42
43         order = order_obj.browse(cr, uid, active_id, context=context)
44         amount = order.amount_total - order.amount_paid
45         data = self.read(cr, uid, ids, context=context)[0]
46         # this is probably a problem of osv_memory as it's not compatible with normal OSV's
47         #data['journal'] = data['journal'][0]
48
49         if amount != 0.0:
50             order_obj.add_payment(cr, uid, active_id, data, context=context)
51
52         if order_obj.test_paid(cr, uid, [active_id]):
53             wf_service = netsvc.LocalService("workflow")
54             wf_service.trg_validate(uid, 'pos.order', active_id, 'paid', cr)
55             return self.print_report(cr, uid, ids, context=context)
56
57         return self.launch_payment(cr, uid, ids, context=context)
58
59     def launch_payment(self, cr, uid, ids, context=None):
60         return {
61             'name': _('Paiement'),
62             'view_type': 'form',
63             'view_mode': 'form',
64             'res_model': 'pos.make.payment',
65             'view_id': False,
66             'target': 'new',
67             'views': False,
68             'type': 'ir.actions.act_window',
69         }
70
71     def print_report(self, cr, uid, ids, context=None):
72         active_id = context.get('active_id', [])
73         datas = {'ids' : [active_id]}
74         return {
75             'type': 'ir.actions.report.xml',
76             'report_name': 'pos.receipt',
77             'datas': datas,
78         }
79
80     def _default_journal(self, cr, uid, context=None):
81         res = pos_box_entries.get_journal(self, cr, uid, context=context)
82         return len(res)>1 and res[1][0] or False
83
84     def _default_amount(self, cr, uid, context=None):
85         order_obj = self.pool.get('pos.order')
86         active_id = context and context.get('active_id', False)
87         if active_id:
88             order = order_obj.browse(cr, uid, active_id, context=context)
89             return order.amount_total - order.amount_paid
90         return False
91
92     _columns = {
93         'journal': fields.selection(pos_box_entries.get_journal, "Payment Mode", required=True),
94         'amount': fields.float('Amount', digits=(16,2), required= True),
95         'payment_name': fields.char('Payment Reference', size=32),
96         'payment_date': fields.date('Payment Date', required=True),
97     }
98     _defaults = {
99         'payment_date': time.strftime('%Y-%m-%d %H:%M:%S'),
100         'amount': _default_amount,
101         'journal': _default_journal
102     }
103
104 pos_make_payment()
105
106
107 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: