mirror of
https://github.com/bringout/odoomates.git
synced 2026-04-23 09:12:09 +02:00
- All manifest versions updated to 19.0.1.0.0
- Renamed all <tree> view tags to <list> (19.0 requirement)
- Renamed tree,form to list,form in view_mode fields
- Removed account.chart.template views (AbstractModel in 19.0)
- Fixed xpath /tree/ to /list/ in account_journal.xml for payment methods
- Modules: om_account_accountant, accounting_pdf_reports,
om_account_budget, om_recurring_payments, om_account_daily_reports
🤖 assisted by claude
24 lines
837 B
Python
24 lines
837 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Odoo 19 Budget Management',
|
|
'author': 'Odoo Mates, Odoo SA',
|
|
'category': 'Accounting',
|
|
'version': '19.0.1.0.0',
|
|
'description': """Use budgets to compare actual with expected revenues and costs""",
|
|
'summary': 'Odoo 16 Budget Management',
|
|
'sequence': 10,
|
|
'website': 'https://www.odoomates.tech',
|
|
'depends': ['account'],
|
|
'license': 'LGPL-3',
|
|
'data': [
|
|
'security/ir.model.access.csv',
|
|
'security/account_budget_security.xml',
|
|
'views/account_analytic_account_views.xml',
|
|
'views/account_budget_views.xml',
|
|
'views/res_config_settings_views.xml',
|
|
],
|
|
"images": ['static/description/banner.gif'],
|
|
'demo': ['data/account_budget_demo.xml'],
|
|
}
|