[MERGE] OPW 590300: make some action help texts consistent with the rest of the system
[odoo/odoo.git] / addons / account_budget / __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 {
24     'name': 'Budgets Management',
25     'version': '1.0',
26     'category': 'Accounting & Finance',
27     'description': """
28 This module allows accountants to manage analytic and crossovered budgets.
29 ==========================================================================
30
31 Once the Budgets are defined (in Invoicing/Budgets/Budgets), the Project Managers 
32 can set the planned amount on each Analytic Account.
33
34 The accountant has the possibility to see the total of amount planned for each
35 Budget in order to ensure the total planned is not greater/lower than what he 
36 planned for this Budget. Each list of record can also be switched to a graphical 
37 view of it.
38
39 Three reports are available:
40 ----------------------------
41     1. The first is available from a list of Budgets. It gives the spreading, for 
42        these Budgets, of the Analytic Accounts.
43
44     2. The second is a summary of the previous one, it only gives the spreading, 
45        for the selected Budgets, of the Analytic Accounts.
46
47     3. The last one is available from the Analytic Chart of Accounts. It gives 
48        the spreading, for the selected Analytic Accounts of Budgets.
49 """,
50     'author': 'OpenERP SA',
51     'website': 'http://www.openerp.com',
52     'images': ['images/budget.jpeg','images/budgetary_position.jpeg'],
53     'depends': ['account'],
54     'data': [
55         'security/ir.model.access.csv',
56         'security/account_budget_security.xml',
57         'account_budget_view.xml',
58         'account_budget_report.xml',
59         'account_budget_workflow.xml',
60         'wizard/account_budget_analytic_view.xml',
61         'wizard/account_budget_report_view.xml',
62         'wizard/account_budget_crossovered_summary_report_view.xml',
63         'wizard/account_budget_crossovered_report_view.xml',
64     ],
65     'demo': ['account_budget_demo.xml'],
66     'test':[
67         'test/account_budget.yml',
68         'test/account_budget_report.yml',
69     ],
70     'installable': True,
71     'auto_install': False,
72 }
73 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: