40 lines
1.5 KiB
Python
40 lines
1.5 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
||
|
|
||
|
{
|
||
|
'name': 'Budgets Management',
|
||
|
'category': 'Accounting',
|
||
|
'description': """
|
||
|
This module allows accountants to manage analytic and crossovered budgets.
|
||
|
==========================================================================
|
||
|
|
||
|
Once the Budgets are defined (in Invoicing/Budgets/Budgets), the Project Managers
|
||
|
can set the planned amount on each Analytic Account.
|
||
|
|
||
|
The accountant has the possibility to see the total of amount planned for each
|
||
|
Budget in order to ensure the total planned is not greater/lower than what he
|
||
|
planned for this Budget. Each list of record can also be switched to a graphical
|
||
|
view of it.
|
||
|
|
||
|
Three reports are available:
|
||
|
----------------------------
|
||
|
1. The first is available from a list of Budgets. It gives the spreading, for
|
||
|
these Budgets, of the Analytic Accounts.
|
||
|
|
||
|
2. The second is a summary of the previous one, it only gives the spreading,
|
||
|
for the selected Budgets, of the Analytic Accounts.
|
||
|
|
||
|
3. The last one is available from the Analytic Chart of Accounts. It gives
|
||
|
the spreading, for the selected Analytic Accounts of Budgets.
|
||
|
""",
|
||
|
'website': 'https://www.odoo.com/page/accounting',
|
||
|
'depends': ['account'],
|
||
|
'data': [
|
||
|
'security/ir.model.access.csv',
|
||
|
'security/account_budget_security.xml',
|
||
|
'views/account_analytic_account_views.xml',
|
||
|
'views/account_budget_views.xml',
|
||
|
],
|
||
|
'demo': ['data/account_budget_demo.xml'],
|
||
|
}
|