# -*- encoding: utf-8 -*- # Part of Odoo. See LICENSE file for full copyright and licensing details. # Copyright (C) 2011 Smartmode LTD (). { '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', }