[ADD] stock: Added osv_memory wizard for 'Upstream Traceability' and 'Downstream...
[odoo/odoo.git] / addons / stock / __terp__.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
23 {
24     "name" : "Inventory Management",
25     "version" : "1.1",
26     "author" : "Tiny",
27     "description" : """OpenERP Inventory Management module can manage multi-warehouses, multi and structured stock locations.
28 Thanks to the double entry management, the inventory controlling is powerful and flexible:
29 * Moves history and planning,
30 * Different inventory methods (FIFO, LIFO, ...)
31 * Stock valuation (standard or average price, ...)
32 * Robustness faced with Inventory differences
33 * Automatic reordering rules (stock level, JIT, ...)
34 * Bar code supported
35 * Rapid detection of mistakes through double entry system
36 * Traceability (upstream/downstream, production lots, serial number, ...)
37     """,
38     "website" : "http://www.openerp.com",
39     "depends" : ["product", "account"],
40     "category" : "Generic Modules/Inventory Control",
41     "init_xml" : [],
42     "demo_xml" : ["stock_demo.xml"],
43     "update_xml" : [
44         "stock_data.xml",
45         "wizard/stock_move_view.xml",
46         "wizard/stock_partial_picking_view.xml",
47         "wizard/stock_inventory_set_stock_zero_view.xml",
48         "wizard/stock_fill_inventory_view.xml",
49         "wizard/stock_invoice_onshipping_view.xml",
50         "wizard/stock_location_product_view.xml",
51         "wizard/stock_inventory_line_split_view.xml",
52         "wizard/stock_change_standard_price_view.xml",
53         "wizard/stock_inventory_merge_view.xml",
54         "wizard/stock_traceability_view.xml",
55         "stock_workflow.xml",
56         "stock_incoterms.xml",
57         "stock_wizard.xml",        
58         "stock_view.xml",
59         "stock_report.xml",
60         "stock_sequence.xml",
61         "product_data.xml",
62         "product_view.xml",
63         "partner_view.xml",
64         "report/report_stock_view.xml",
65         "report/report_stock_picking_view.xml",
66         "security/stock_security.xml",
67         "security/ir.model.access.csv",
68     ],
69     'demo_xml': ['stock_demo.xml'],
70     'installable': True,
71     'active': False,
72     'certificate': '0055421559965',
73 }
74 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: