forked from Mapan/odoo17e
26 lines
637 B
Python
26 lines
637 B
Python
# -*- coding: utf-8 -*-
|
|
{
|
|
'name': 'US - Accounting Reports',
|
|
'countries': ['us'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Accounting reports for US
|
|
""",
|
|
'website': 'https://www.odoo.com/app/accounting',
|
|
'depends': [
|
|
'l10n_us', 'account_reports'
|
|
],
|
|
'data': [
|
|
'data/check_register.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': ['l10n_us', 'account_reports'],
|
|
'license': 'OEEL-1',
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
'l10n_us_reports/static/src/components/check_register/**/*',
|
|
],
|
|
}
|
|
}
|