forked from Mapan/odoo17e
23 lines
741 B
Python
23 lines
741 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Norwegian Standard Audit File for Tax',
|
|
'countries': ['no'],
|
|
'version': '1.2',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Norwegian SAF-T is standard file format for exporting various types of accounting transactional data using the XML format.
|
|
The first version of the SAF-T Financial is limited to the general ledger level including customer and supplier transactions.
|
|
Necessary master data is also included.
|
|
""",
|
|
'depends': [
|
|
'l10n_no', 'account_saft',
|
|
],
|
|
'data': [
|
|
'data/saft_report.xml'
|
|
],
|
|
'license': 'OEEL-1',
|
|
'auto_install': True,
|
|
}
|