[FIX] webkit: User friendly popup error message displayed while webkit report's path...
[odoo/odoo.git] / addons / stock / __openerp__.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     "name" : "Inventory Management",
24     "version" : "1.1",
25     "author" : "OpenERP SA",
26     "description" : """OpenERP Inventory Management module can manage multi-warehouses, multi and structured stock locations.
27 Thanks to the double entry management, the inventory controlling is powerful and flexible:
28 * Moves history and planning,
29 * Different inventory methods (FIFO, LIFO, ...)
30 * Stock valuation (standard or average price, ...)
31 * Robustness faced with Inventory differences
32 * Automatic reordering rules (stock level, JIT, ...)
33 * Bar code supported
34 * Rapid detection of mistakes through double entry system
35 * Traceability (upstream/downstream, production lots, serial number, ...)
36 * Dashboard for warehouse that includes:
37     * Products to receive in delay (date < = today)
38     * Procurement in exception
39     * Graph : Number of Receive products vs planned (bar graph on week par day)
40     * Graph : Number of Delivery products vs planned (bar graph on week par day)
41     """,
42     "website" : "http://www.openerp.com",
43     "depends" : ["product", "account"],
44     "category" : "Generic Modules/Inventory Control",
45     "init_xml" : [],
46     "demo_xml" : ["stock_demo.xml"],
47     "update_xml" : [
48         "security/stock_security.xml",
49         "security/ir.model.access.csv",
50         "stock_data.xml",
51         "wizard/stock_move_view.xml",
52         "wizard/stock_change_product_qty_view.xml",
53         "wizard/stock_partial_picking_view.xml",
54         "wizard/stock_partial_move_view.xml",
55         "wizard/stock_fill_inventory_view.xml",
56         "wizard/stock_invoice_onshipping_view.xml",
57         "wizard/stock_inventory_merge_view.xml",
58         "wizard/stock_location_product_view.xml",
59         "wizard/stock_splitinto_view.xml",
60         "wizard/stock_inventory_line_split_view.xml",
61         "wizard/stock_change_standard_price_view.xml",
62         'wizard/stock_return_picking_view.xml',
63         "stock_workflow.xml",
64         "stock_incoterms.xml",
65         "stock_view.xml",
66         "stock_report.xml",
67         "stock_sequence.xml",
68         "product_data.xml",
69         "product_view.xml",
70         "partner_view.xml",
71         "report/report_stock_move_view.xml",
72         "report/report_stock_view.xml",
73         "board_warehouse_view.xml"
74     ],
75     'test': ['test/stock_test.yml',
76              'test/stock_report.yml',
77              ],
78     'installable': True,
79     'active': False,
80     'certificate': '0055421559965',
81 }