[FIX] improving manifests
[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 WMS Accounting module
29 ======================
30 This module makes the link between the 'stock' and 'account' modules and allows you to create accounting entries to value your stock movements
31
32 Key Features
33 ------------
34 * Stock Valuation (periodical or automatic)
35 * Invoice from Picking
36
37 Dashboard / Reports for Warehouse Management includes:
38 ------------------------------------------------------
39 * Stock Inventory Value at given date (support dates in the past)
40     """,
41     'website': 'https://www.odoo.com/page/warehouse',
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         'wizard/stock_return_picking_view.xml',
57         'product_data.xml',
58         'product_view.xml',
59         'stock_account_view.xml',
60         'res_config_view.xml',
61     ],
62     'test': [
63
64     ],
65     'installable': True,
66     'auto_install': True,
67 }