forked from Mapan/odoo17e
26 lines
677 B
Python
26 lines
677 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': "Project Budget",
|
|
'version': '1.0',
|
|
'summary': "Project account budget",
|
|
'category': 'Services/Project',
|
|
'depends': ['account_budget', 'project_enterprise'],
|
|
'data': [
|
|
'views/project_views.xml',
|
|
'views/account_budget_views.xml',
|
|
'views/project_update_templates.xml',
|
|
],
|
|
'demo': [
|
|
'data/account_budget_demo.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'project_account_budget/static/src/components/**/*',
|
|
],
|
|
},
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|