1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/project_account_budget/__manifest__.py
2024-12-10 09:04:09 +07:00

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',
}