33 lines
979 B
Python
33 lines
979 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
{
|
|
'name': 'Sweden - Accounting',
|
|
'website': 'https://www.odoo.com/documentation/17.0/applications/finance/fiscal_localizations.html',
|
|
'icon': '/account/static/description/l10n.png',
|
|
'countries': ['se'],
|
|
'version': '1.1',
|
|
'author': 'XCLUDE, Odoo S.A.',
|
|
'category': 'Accounting/Localizations/Account Charts',
|
|
'description': """
|
|
Swedish Accounting
|
|
------------------
|
|
|
|
This is the base module to manage the accounting chart for Sweden in Odoo.
|
|
It also includes the invoice OCR payment reference handling.
|
|
""",
|
|
'depends': [
|
|
'account',
|
|
'base_vat',
|
|
],
|
|
'data': [
|
|
'data/account.account.tag.csv',
|
|
'data/account_tax_report_data.xml',
|
|
"data/res_country_data.xml",
|
|
'views/partner_view.xml',
|
|
'views/account_journal_view.xml',
|
|
],
|
|
'demo': [
|
|
'demo/demo_company.xml',
|
|
],
|
|
'license': 'LGPL-3',
|
|
}
|