[FIX] pep8
[odoo/odoo.git] / addons / point_of_sale / wizard / pos_add_product.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 from osv import osv, fields
23 from tools.translate import _
24
25
26 class add_product(osv.osv_memory):
27     _name = 'pos.add.product'
28     _description = 'Add Product'
29
30     _columns = {
31         'product_id': fields.many2one('product.product', 'Product', required=True),
32         'quantity': fields.float('Quantity ', required=True),
33     }
34     _defaults = {
35         'quantity': lambda *a: 1,
36     }
37
38     def select_product(self, cr, uid, ids, context):
39         """
40              To get the product and quantity and add in order .
41              @param self: The object pointer.
42              @param cr: A database cursor
43              @param uid: ID of the user currently logged in
44              @param context: A standard dictionary
45              @return : Return the add product form again for adding more product
46         """
47         this = self.browse(cr, uid, ids[0], context=context)
48         record_id = context and context.get('active_id', False)
49         assert record_id, _('Active ID is not found')
50         if record_id:
51             order_obj = self.pool.get('pos.order')
52             order_obj.add_product(cr, uid, record_id, this.product_id.id, this.quantity, context=context)
53
54         return {
55             'name': _('Add Product'),
56             'view_type': 'form',
57             'view_mode': 'form',
58             'res_model': 'pos.add.product',
59             'view_id': False,
60             'target': 'new',
61             'views': False,
62             'type': 'ir.actions.act_window',
63         }
64
65 add_product()
66
67 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
68