diff --git a/product_harmonized_system_heading_stock/__init__.py b/product_harmonized_system_heading_stock/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/product_harmonized_system_heading_stock/__manifest__.py b/product_harmonized_system_heading_stock/__manifest__.py new file mode 100644 index 000000000..ee443dc25 --- /dev/null +++ b/product_harmonized_system_heading_stock/__manifest__.py @@ -0,0 +1,16 @@ +# Copyright 2023 ForgeFlow S.L. (https://www.forgeflow.com) +# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). +{ + "name": "Product Harmonized System Header (menu entry)", + "version": "13.0.1.0.0", + "category": "Reporting", + "license": "AGPL-3", + "summary": "Adds a Menu Entry for H.S. Code Heading", + "website": "https://github.com/OCA/intrastat-extrastat", + "author": "ForgeFlow, Odoo Community Association (OCA)", + "depends": ["product_harmonized_system_heading", "stock"], + "data": ["views/hs_code_header_menu.xml"], + "installable": True, + "application": False, + "auto_install": True, +} diff --git a/product_harmonized_system_heading_stock/readme/CONTRIBUTORS.rst b/product_harmonized_system_heading_stock/readme/CONTRIBUTORS.rst new file mode 100644 index 000000000..163379ac6 --- /dev/null +++ b/product_harmonized_system_heading_stock/readme/CONTRIBUTORS.rst @@ -0,0 +1 @@ +* Guillem Casassas diff --git a/product_harmonized_system_heading_stock/readme/DESCRIPTION.rst b/product_harmonized_system_heading_stock/readme/DESCRIPTION.rst new file mode 100644 index 000000000..a9e70ff53 --- /dev/null +++ b/product_harmonized_system_heading_stock/readme/DESCRIPTION.rst @@ -0,0 +1 @@ +This module adds a menu entry for H.S. Code Heading. This menu entry is available under *Inventory > Configuration > Products*. diff --git a/product_harmonized_system_heading_stock/views/hs_code_header_menu.xml b/product_harmonized_system_heading_stock/views/hs_code_header_menu.xml new file mode 100644 index 000000000..14459eeca --- /dev/null +++ b/product_harmonized_system_heading_stock/views/hs_code_header_menu.xml @@ -0,0 +1,14 @@ + + + + + + diff --git a/setup/product_harmonized_system_heading_stock/odoo/addons/product_harmonized_system_heading_stock b/setup/product_harmonized_system_heading_stock/odoo/addons/product_harmonized_system_heading_stock new file mode 120000 index 000000000..cf9131410 --- /dev/null +++ b/setup/product_harmonized_system_heading_stock/odoo/addons/product_harmonized_system_heading_stock @@ -0,0 +1 @@ +../../../../product_harmonized_system_heading_stock \ No newline at end of file diff --git a/setup/product_harmonized_system_heading_stock/setup.py b/setup/product_harmonized_system_heading_stock/setup.py new file mode 100644 index 000000000..28c57bb64 --- /dev/null +++ b/setup/product_harmonized_system_heading_stock/setup.py @@ -0,0 +1,6 @@ +import setuptools + +setuptools.setup( + setup_requires=['setuptools-odoo'], + odoo_addon=True, +)