forked from Mapan/odoo17e
40 lines
1.1 KiB
Python
40 lines
1.1 KiB
Python
# -*- encoding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
# Copyright (C) 2011 Smartmode LTD (<http://www.smartmode.co.uk>).
|
|
|
|
{
|
|
'name': 'UK - Accounting Reports',
|
|
'countries': ['gb'],
|
|
'version': '1.1',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Accounting reports for UK
|
|
|
|
Allows to send the tax report via the
|
|
MTD-VAT API to HMRC.
|
|
""",
|
|
'author': 'SmartMode LTD',
|
|
'website': 'https://www.odoo.com/app/accounting',
|
|
'depends': [
|
|
'l10n_uk', 'account_reports'
|
|
],
|
|
'data': [
|
|
'views/views.xml',
|
|
"views/res_users_views.xml",
|
|
'security/ir.model.access.csv',
|
|
'security/hmrc_security.xml',
|
|
'wizard/hmrc_send_wizard.xml',
|
|
'data/tax_report.xml',
|
|
'data/config_parameter.xml',
|
|
],
|
|
'assets': {
|
|
'web.assets_backend': [
|
|
"l10n_uk_reports/static/src/components/**/*",
|
|
],
|
|
},
|
|
'installable': True,
|
|
'auto_install': ['l10n_uk', 'account_reports'],
|
|
'license': 'OEEL-1',
|
|
}
|