-
-
Notifications
You must be signed in to change notification settings - Fork 108
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ADD]product_harmonized_system_heading_stock
Glue module between product_harmonized_system_heading and stock in order to add the needed Menu Item. Just as done in the `product_harmonized_system_stock` module.
- Loading branch information
1 parent
f9b04ae
commit bd23920
Showing
7 changed files
with
39 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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, | ||
} |
1 change: 1 addition & 0 deletions
1
product_harmonized_system_heading_stock/readme/CONTRIBUTORS.rst
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
* Guillem Casassas <[email protected]> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This module adds a menu entry for H.S. Code Heading. This menu entry is available under *Inventory > Configuration > Products*. |
14 changes: 14 additions & 0 deletions
14
product_harmonized_system_heading_stock/views/hs_code_header_menu.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?xml version="1.0" encoding="utf-8" ?> | ||
<!-- | ||
Copyright 2023 ForgeFlow S.L. (https://www.forgeflow.com) | ||
License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl.html). | ||
--> | ||
<odoo> | ||
<!-- Menu entry for H.S. Code Heading --> | ||
<menuitem | ||
id="hs_code_header_menu" | ||
action="product_harmonized_system_heading.hs_code_heading_action" | ||
parent="stock.menu_product_in_config_stock" | ||
sequence="65" | ||
/> | ||
</odoo> |
1 change: 1 addition & 0 deletions
1
...oduct_harmonized_system_heading_stock/odoo/addons/product_harmonized_system_heading_stock
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
../../../../product_harmonized_system_heading_stock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
import setuptools | ||
|
||
setuptools.setup( | ||
setup_requires=['setuptools-odoo'], | ||
odoo_addon=True, | ||
) |