[FIX] pep8
[odoo/odoo.git] / addons / point_of_sale / wizard / pos_confirm.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 netsvc
23 from osv import osv
24 from tools.translate import _
25
26
27 class pos_confirm(osv.osv_memory):
28     _name = 'pos.confirm'
29     _description = 'Point of Sale Confirm'
30
31     def action_confirm(self, cr, uid, ids, context):
32         """
33              Confirm the order and close the sales.
34              @param self: The object pointer.
35              @param cr: A database cursor
36              @param uid: ID of the user currently logged in
37              @param context: A standard dictionary
38              @return :Blank dictionary
39         """
40
41         record_id = context and context.get('active_id', False)
42         if record_id:
43             if isinstance(record_id, (int, long)):
44                 record_id = [record_id]
45             if record_id:
46                 order_obj = self.pool.get('pos.order')
47
48                 for order_id in order_obj.browse(cr, uid, record_id, context=context):
49                     if  order_id.state == 'paid':
50                         order_obj.write(cr, uid, [order_id.id], {'journal_entry': True})
51                         order_obj.create_account_move(cr, uid, [order_id.id], context=context)
52
53                 wf_service = netsvc.LocalService("workflow")
54                 for i in record_id:
55                     wf_service.trg_validate(uid, 'pos.order', i, 'done', cr)
56         return {}
57
58 pos_confirm()
59
60 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
61