[IMP] hr_recruitment, project: better access rules for categories
[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 OpenERP Inventory Management module can manage multi-warehouses, multi and structured stock locations.
29 ======================================================================================================
30
31 Thanks to the double entry management, the inventory controlling is powerful and flexible:
32     * Moves history and planning,
33     * Stock valuation (standard or average price, ...)
34     * Robustness faced with Inventory differences
35     * Automatic reordering rules (stock level, JIT, ...)
36     * Bar code supported
37     * Rapid detection of mistakes through double entry system
38     * Traceability (upstream/downstream, production lots, serial number, ...)
39     
40 Dashboard for warehouse that includes:
41 --------------------------------------
42     * Procurement in exception
43     * List of Incoming Products
44     * List of Outgoing Products
45     * Graph : Products to receive in delay (date <= today)
46     * Graph : Products to send in delay (date <= today)
47     """,
48     "website" : "http://www.openerp.com",
49     "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"],
50     "depends" : ["product", "account"],
51     "category" : "Warehouse Management",
52     "sequence": 16,
53     "init_xml" : [],
54     "demo_xml" : [
55         "stock_demo.xml",
56 #        "stock_demo.yml",
57     ],
58     "update_xml" : [
59         "security/stock_security.xml",
60         "security/ir.model.access.csv",
61         "stock_data.xml",
62         "wizard/stock_move_view.xml",
63         "wizard/stock_change_product_qty_view.xml",
64         "wizard/stock_partial_picking_view.xml",
65         "wizard/stock_partial_move_view.xml",
66         "wizard/stock_fill_inventory_view.xml",
67         "wizard/stock_invoice_onshipping_view.xml",
68         "wizard/stock_inventory_merge_view.xml",
69         "wizard/stock_location_product_view.xml",
70         "wizard/stock_splitinto_view.xml",
71         "wizard/stock_inventory_line_split_view.xml",
72         "wizard/stock_change_standard_price_view.xml",
73         'wizard/stock_return_picking_view.xml',
74         "stock_workflow.xml",
75         "stock_incoterms.xml",
76         "stock_report.xml",
77         "stock_view.xml",
78         "stock_sequence.xml",
79         "product_data.xml",
80         "product_view.xml",
81         "partner_view.xml",
82         "report/report_stock_move_view.xml",
83         "report/report_stock_view.xml",
84         "board_warehouse_view.xml",
85         "res_config_view.xml",
86     ],
87     'test': [
88 #        'test/opening_stock.yml',
89 #        'test/shipment.yml',
90 #        'test/stock_report.yml',
91     ],
92     'installable': True,
93     'application': True,
94     'auto_install': False,
95     'certificate': '0055421559965',
96     "css": [ 'static/src/css/stock.css' ],
97 }
98
99 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: