[FIX] stock: packages menuitem hidden by the right group. sale_stock: fixed bug ...
[odoo/odoo.git] / addons / stock_account / __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': 'WMS Accounting',
24     'version': '1.1',
25     'author': 'OpenERP SA',
26     'summary': 'Inventory, Logistic, Valuation, Accounting',
27     'description': """
28 #TODO
29 ======================
30 #TODO
31
32 Key Features
33 ------------
34 * Stock Valuation (periodical or automatic)
35 * Invoice from Picking
36
37 Dashboard / Reports for Warehouse Management will include:
38 ----------------------------------------------------------
39 * TODO
40     """,
41     'website': 'http://www.openerp.com',
42     'images': [],
43     'depends': ['stock', 'account'],
44     'category': 'Hidden',
45     'sequence': 16,
46     'demo': [
47         'stock_account_demo.xml'
48     ],
49     'data': [
50         'security/stock_account_security.xml',
51         'security/ir.model.access.csv',
52         'stock_account_data.xml',
53         'wizard/stock_change_standard_price_view.xml',
54         'wizard/stock_invoice_onshipping_view.xml',
55         'wizard/stock_valuation_history_view.xml',
56         'product_data.xml',
57         'product_view.xml',
58         'stock_account_view.xml',
59     ],
60     'test': [
61
62     ],
63     'installable': True,
64     'application': True,
65     'auto_install': True,
66 }