[IMP] bundlify addons (except website)
[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': 'Warehouse Management',
24     'version': '1.1',
25     'author': 'OpenERP SA',
26     'summary': 'Inventory, Logistic, Storage',
27     'description' : """
28 Manage multi-warehouses, multi- and structured stock locations
29 ==============================================================
30
31 The warehouse and inventory management is based on a hierarchical location structure, from warehouses to storage bins. 
32 The double entry inventory system allows you to manage customers, suppliers as well as manufacturing inventories. 
33
34 OpenERP has the capacity to manage lots and serial numbers ensuring compliance with the traceability requirements imposed by the majority of industries.
35
36 Key Features
37 ------------
38 * Moves history and planning,
39 * Stock valuation (standard or average price, ...)
40 * Robustness faced with Inventory differences
41 * Automatic reordering rules
42 * Support for barcodes
43 * Rapid detection of mistakes through double entry system
44 * Traceability (Upstream / Downstream, Serial numbers, ...)
45
46 Dashboard / Reports for Warehouse Management will include:
47 ----------------------------------------------------------
48 * Incoming Products (Graph)
49 * Outgoing Products (Graph)
50 * Procurement in Exception
51 * Inventory Analysis
52 * Last Product Inventories
53 * Moves Analysis
54     """,
55     'website': 'http://www.openerp.com',
56     'images': ['images/stock_forecast_report.png', 'images/delivery_orders.jpeg', 'images/inventory_analysis.jpeg','images/location.jpeg','images/moves_analysis.jpeg','images/physical_inventories.jpeg','images/warehouse_dashboard.jpeg'],
57     'depends': ['product', 'account'],
58     'category': 'Warehouse Management',
59     'sequence': 16,
60     'demo': [
61         'stock_demo.xml',
62     ],
63     'data': [
64         'security/stock_security.xml',
65         'security/ir.model.access.csv',
66         'stock_data.xml',
67         'wizard/stock_move_view.xml',
68         'wizard/stock_change_product_qty_view.xml',
69         'wizard/stock_partial_picking_view.xml',
70         'wizard/stock_partial_move_view.xml',
71         'wizard/stock_fill_inventory_view.xml',
72         'wizard/stock_invoice_onshipping_view.xml',
73         'wizard/stock_inventory_merge_view.xml',
74         'wizard/stock_location_product_view.xml',
75         'wizard/stock_splitinto_view.xml',
76         'wizard/stock_inventory_line_split_view.xml',
77         'wizard/stock_change_standard_price_view.xml',
78         'wizard/stock_return_picking_view.xml',
79         'stock_workflow.xml',
80         'stock_incoterms.xml',
81         'stock_report.xml',
82         'stock_view.xml',
83         'stock_sequence.xml',
84         'product_data.xml',
85         'product_view.xml',
86         'partner_view.xml',
87         'report/report_stock_move_view.xml',
88         'report/report_stock_view.xml',
89         'board_warehouse_view.xml',
90         'res_config_view.xml',
91         'views/stock.xml',
92     ],
93     'test': [
94         'test/stock_users.yml',
95         'stock_demo.yml',
96         'test/opening_stock.yml',
97         'test/shipment.yml',
98         'test/stock_report.yml',
99     ],
100     'installable': True,
101     'application': True,
102     'auto_install': False,
103 }
104
105 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: