[REF] stock,delivery :Remove the unused import statemnet, and comment code
[odoo/odoo.git] / addons / stock / wizard / stock_inventory_merge.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 fields, osv
23 from tools.translate import _
24
25 class stock_inventory_merge(osv.osv_memory):
26     _name = "stock.inventory.merge"
27     _description = "Merge Inventory"
28
29     def do_merge(self, cr, uid, ids, context):
30         """ To merge selected Inventories.
31         @param self: The object pointer.
32         @param cr: A database cursor
33         @param uid: ID of the user currently logged in
34         @param ids: List of IDs selected 
35         @param context: A standard dictionary 
36         @return: 
37         """ 
38         invent_obj = self.pool.get('stock.inventory')
39         invent_line_obj = self.pool.get('stock.inventory.line')
40
41         invent_lines = {}
42
43         if len(context['active_ids']) < 2:
44             raise osv.except_osv(_('Warning'),
45             _('Please select at least two inventories.'))
46
47         for inventory in invent_obj.browse(cr, uid, context['active_ids'], context=context):
48             if inventory.state == "done":
49                 raise osv.except_osv(_('Warning'),
50                 _('Merging is only allowed on draft inventories.'))
51
52             for line in inventory.inventory_line_id:
53                 key = (line.location_id.id, line.product_id.id, line.product_uom.id)
54                 if key in invent_lines:
55                     invent_lines[key] += line.product_qty
56                 else:
57                     invent_lines[key] = line.product_qty
58
59
60         new_invent = invent_obj.create(cr, uid, {
61             'name': 'Merged inventory'
62             }, context=context)
63
64         for key, quantity in invent_lines.items():
65             invent_line_obj.create(cr, uid, {
66                 'inventory_id': new_invent,
67                 'location_id': key[0],
68                 'product_id': key[1],
69                 'product_uom': key[2],
70                 'product_qty': quantity,
71                 })
72
73         return {}
74
75 stock_inventory_merge()
76
77 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:
78