Skip to content

Commit cc6b7f2

Browse files
[IMP] product_harmonized_system: Add importer, data and remove company_id
TT55417
1 parent a548293 commit cc6b7f2

27 files changed

Lines changed: 278 additions & 49 deletions

product_harmonized_system/README.rst

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,21 @@ As this module only depends on the *product* module and that module doesn't prov
5353

5454
Once the H.S. codes are created, you will be able to set the H.S. code on a product (under the *Information* tab) or on a product category. On the product form, you will also be able to set the *Country of Origin* of a product (for example, if the product is *made in China*, select *China* as *Country of Origin*).
5555

56+
When you install this module, an installer wizard will appear on the screen and you will
57+
be able to load the data.
58+
59+
If you skipped the installer wizard, you can relaunch it and for that, you need to:
60+
61+
1. Go to Settings > Technical > Actions > Configuration Wizards
62+
2. You need to set the action "Load Intrastat Nomenclature Codes" as Todo
63+
3. You need to launch the action "Load Intrastat Nomenclature Codes"
64+
4. Execute the installer wizard and select the language
65+
66+
Known issues / Roadmap
67+
======================
68+
69+
There is a unification for downloading the codes at the European level https://circabc.europa.eu/ui/group/0e5f18c2-4b2f-42e9-aed4-dfe50ae1263b/library/6e7dc94f-70e4-44ed-9560-b9794979cb87?p=1&n=10&sort=modified_DESC In the future, this should be done in a way that updates the files automatically, so they don't have to be applied manually in the module.
70+
5671
Bug Tracker
5772
===========
5873

@@ -79,6 +94,7 @@ Contributors
7994
* Alexis de Lattre, Akretion <alexis.delattre@akretion.com>
8095
* Luc De Meyer, Noviat <info@noviat.com>
8196
* Kumar Aberer, brain-tec AG <kumar.aberer@braintec-group.com>
97+
* Juan Carlos Oñate, Tecnativa <juancarlos.onate@tecnativa.com>
8298

8399
Maintainers
84100
~~~~~~~~~~~
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
11
from . import models
2+
from . import wizards

product_harmonized_system/__manifest__.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
{
1212
"name": "Product Harmonized System Codes",
13-
"version": "16.0.1.1.0",
13+
"version": "16.0.2.0.0",
1414
"category": "Reporting",
1515
"license": "AGPL-3",
1616
"summary": "Base module for Product Import/Export reports",
@@ -20,11 +20,11 @@
2020
"depends": ["product"],
2121
"excludes": ["account_intrastat"],
2222
"data": [
23-
"security/product_hs_security.xml",
2423
"security/ir.model.access.csv",
2524
"views/hs_code.xml",
2625
"views/product_category.xml",
2726
"views/product_template.xml",
27+
"wizards/intrastat_nomenclature_codes_import_installer_views.xml",
2828
],
2929
"demo": ["demo/product_demo.xml"],
3030
"installable": True,
750 KB
Binary file not shown.
1.32 MB
Binary file not shown.
1.27 MB
Binary file not shown.
1.22 MB
Binary file not shown.
1.24 MB
Binary file not shown.
1.37 MB
Binary file not shown.
1.22 MB
Binary file not shown.

0 commit comments

Comments
 (0)