2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
{
|
|
|
|
'name': 'Intrastat Reporting',
|
2018-01-16 12:08:17 +01:00
|
|
|
'author': 'Odoo S.A.',
|
2018-01-16 06:58:15 +01:00
|
|
|
'category': 'Accounting',
|
|
|
|
'description': """
|
|
|
|
A module that adds intrastat reports.
|
|
|
|
=====================================
|
|
|
|
|
|
|
|
This module gives the details of the goods traded between the countries of
|
|
|
|
European Union.""",
|
|
|
|
'depends': ['base', 'product', 'delivery', 'stock', 'sale_management', 'purchase'],
|
|
|
|
'data': [
|
|
|
|
'data/report_intrastat_data.xml',
|
|
|
|
'report/report_intrastat_invoice_template.xml',
|
|
|
|
'report/report_intrastat_report.xml',
|
|
|
|
'security/ir.model.access.csv',
|
|
|
|
'security/report_intrastat_security.xml',
|
|
|
|
'views/report_intrastat_views.xml',
|
|
|
|
],
|
|
|
|
'tests': ['../account/test/account_minimal_test.xml'],
|
|
|
|
}
|