forked from Mapan/odoo17e
28 lines
849 B
Python
28 lines
849 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Sweden - Accounting Reports',
|
|
'countries': ['se'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'author': "XCLUDE, Linserv, Odoo SA",
|
|
'description': """
|
|
Accounting reports for Sweden
|
|
""",
|
|
'depends': [
|
|
'l10n_se', 'account_reports'
|
|
],
|
|
'data': [
|
|
'data/account_financial_html_report_K3_bs_data.xml',
|
|
'data/account_financial_html_report_K3_pnl_data.xml',
|
|
'data/account_report_ec_sales_list_report.xml',
|
|
'data/tax_report_data.xml',
|
|
'views/report_export_template.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': ['l10n_se', 'account_reports'],
|
|
'website': 'https://www.odoo.com/app/accounting',
|
|
'license': 'OEEL-1',
|
|
}
|