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

24 lines
673 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
{
'name' : 'Cash Basis Accounting Reports',
'summary': 'Add cash basis functionality for reports',
'category': 'Accounting/Accounting',
'description': """
Cash Basis for Accounting Reports
=================================
""",
'depends': ['account_reports'],
'data': [
'data/account_reports_data.xml',
'views/account_report_view.xml',
],
'assets': {
'web.assets_backend': [
'account_reports_cash_basis/static/src/components/**/*',
],
},
'installable': True,
'license': 'OEEL-1',
}