forked from Mapan/odoo17e
20 lines
584 B
Python
20 lines
584 B
Python
# -*- coding: utf-8 -*-
|
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
|
|
{
|
|
'name': 'Stock Intrastat',
|
|
'category': 'Inventory/Inventory',
|
|
'description': """
|
|
A module that add the stock management in intrastat reports.
|
|
============================================================
|
|
|
|
This module gives the details of the goods traded between the countries of
|
|
European Union.""",
|
|
'depends': ['stock_account', 'account_intrastat'],
|
|
'data': [
|
|
'views/stock_warehouse_view.xml',
|
|
],
|
|
'auto_install': True,
|
|
'license': 'OEEL-1',
|
|
}
|