forked from Mapan/odoo17e
21 lines
670 B
Python
21 lines
670 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Lithuanian Intrastat Declaration',
|
|
'countries': ['lt'],
|
|
'version': '1.0',
|
|
'category': 'Accounting/Localizations/Reporting',
|
|
'description': """
|
|
Generates Intrastat XML report for declaration.
|
|
Adds the possibility to specify the origin country of goods and the partner VAT in the Intrastat XML report.
|
|
""",
|
|
'depends': ['l10n_lt', 'account_intrastat'],
|
|
'data': [
|
|
'data/intrastat_export.xml',
|
|
'data/code_region_data.xml',
|
|
'views/res_config_settings.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|