[MERGE] from master
[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 * Minimum stock rules
40 * Support for barcodes
41 * Rapid detection of mistakes through double entry system
42 * Traceability (Serial Numbers, Packages, ...)
43
44 Dashboard / Reports for Warehouse Management will include:
45 ----------------------------------------------------------
46 * Incoming Products (Graph)
47 * Outgoing Products (Graph)
48 * Procurement in Exception
49 * Inventory Analysis
50 * Last Product Inventories
51 * Moves Analysis
52     """,
53     'website': 'https://www.odoo.com/page/warehouse',
54     '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'],
55     'depends': ['product', 'procurement', 'board', 'web_kanban_gauge', 'web_kanban_sparkline', 'barcodes'],
56     'category': 'Warehouse Management',
57     'sequence': 16,
58     'demo': [
59         'stock_demo_pre.yml',
60         'stock_demo.xml',
61         'procurement_demo.xml',
62         'stock_orderpoint.xml',
63         'stock_orderpoint.yml',
64         'stock_demo.yml',
65         'stock_location_demo_cpu1.xml',
66         'stock_location_demo_cpu3.yml',
67     ],
68     'data': [
69         'data/default_barcode_patterns.xml',
70         'security/stock_security.xml',
71         'security/ir.model.access.csv',
72         'stock_data.xml',
73         'stock_data.yml',
74         'wizard/stock_move_view.xml',
75         'wizard/stock_change_product_qty_view.xml',
76         'wizard/stock_return_picking_view.xml',
77         'wizard/make_procurement_view.xml',
78         'wizard/orderpoint_procurement_view.xml',
79         'wizard/stock_transfer_details.xml',
80         'stock_incoterms.xml',
81         'stock_report.xml',
82         'stock_view.xml',
83         'stock_sequence.xml',
84         'product_view.xml',
85         'partner_view.xml',
86         'report/report_stock_view.xml',
87         'res_config_view.xml',
88         'views/report_package_barcode.xml',
89         'views/report_lot_barcode.xml',
90         'views/report_location_barcode.xml',
91         'views/report_stockpicking.xml',
92         'views/report_stockinventory.xml',
93         'views/stock.xml',
94     ],
95     'test': [
96         'test/inventory.yml',
97         'test/move.yml',
98         'test/procrule.yml',
99         'test/stock_users.yml',
100         'stock_demo.yml',
101         'test/shipment.yml',
102         'test/packing.yml',
103         'test/packingneg.yml',
104         'test/wiseoperator.yml',
105     ],
106     'installable': True,
107     'application': True,
108     'auto_install': False,
109     'qweb': ['static/src/xml/picking.xml'],
110 }
111
112 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: