Skip to content

Commit 3fe4dd4

Browse files
committed
Merge PR #327 into 19.0
Signed-off-by simahawk
2 parents 2b652b1 + 939ab86 commit 3fe4dd4

File tree

16 files changed

+716
-0
lines changed

16 files changed

+716
-0
lines changed
Lines changed: 101 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
.. image:: https://odoo-community.org/readme-banner-image
2+
:target: https://odoo-community.org/get-involved?utm_source=readme
3+
:alt: Odoo Community Association
4+
5+
======================================
6+
Product Harmonized System (menu entry)
7+
======================================
8+
9+
..
10+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
11+
!! This file is generated by oca-gen-addon-readme !!
12+
!! changes will be overwritten. !!
13+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
14+
!! source digest: sha256:cff58018e9b1f6f49fabfab52f536e9f3223ea7e91d1a600a2b405eca97c16c2
15+
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
16+
17+
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
18+
:target: https://odoo-community.org/page/development-status
19+
:alt: Beta
20+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
21+
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
22+
:alt: License: AGPL-3
23+
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fintrastat--extrastat-lightgray.png?logo=github
24+
:target: https://github.com/OCA/intrastat-extrastat/tree/19.0/product_harmonized_system_stock
25+
:alt: OCA/intrastat-extrastat
26+
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
27+
:target: https://translation.odoo-community.org/projects/intrastat-extrastat-19-0/intrastat-extrastat-19-0-product_harmonized_system_stock
28+
:alt: Translate me on Weblate
29+
.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png
30+
:target: https://runboat.odoo-community.org/builds?repo=OCA/intrastat-extrastat&target_branch=19.0
31+
:alt: Try me on Runboat
32+
33+
|badge1| |badge2| |badge3| |badge4| |badge5|
34+
35+
This module adds a menu entry for **H.S. Codes**. This menu entry is
36+
available under *Inventory > Configuration > Products*.
37+
38+
**Table of contents**
39+
40+
.. contents::
41+
:local:
42+
43+
Bug Tracker
44+
===========
45+
46+
Bugs are tracked on `GitHub Issues <https://github.com/OCA/intrastat-extrastat/issues>`_.
47+
In case of trouble, please check there if your issue has already been reported.
48+
If you spotted it first, help us to smash it by providing a detailed and welcomed
49+
`feedback <https://github.com/OCA/intrastat-extrastat/issues/new?body=module:%20product_harmonized_system_stock%0Aversion:%2019.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
50+
51+
Do not contact contributors directly about support or help with technical issues.
52+
53+
Credits
54+
=======
55+
56+
Authors
57+
-------
58+
59+
* Akretion
60+
61+
Contributors
62+
------------
63+
64+
- Alexis de Lattre <alexis.delattre@akretion.com>
65+
- Nhan Tran <nhant@trobz.com>
66+
67+
Other credits
68+
-------------
69+
70+
The migration of this module from 18.0 to 19.0 was financially supported
71+
by:
72+
73+
- Camptocamp
74+
75+
Maintainers
76+
-----------
77+
78+
This module is maintained by the OCA.
79+
80+
.. image:: https://odoo-community.org/logo.png
81+
:alt: Odoo Community Association
82+
:target: https://odoo-community.org
83+
84+
OCA, or the Odoo Community Association, is a nonprofit organization whose
85+
mission is to support the collaborative development of Odoo features and
86+
promote its widespread use.
87+
88+
.. |maintainer-alexis-via| image:: https://github.com/alexis-via.png?size=40px
89+
:target: https://github.com/alexis-via
90+
:alt: alexis-via
91+
.. |maintainer-luc-demeyer| image:: https://github.com/luc-demeyer.png?size=40px
92+
:target: https://github.com/luc-demeyer
93+
:alt: luc-demeyer
94+
95+
Current `maintainers <https://odoo-community.org/page/maintainer-role>`__:
96+
97+
|maintainer-alexis-via| |maintainer-luc-demeyer|
98+
99+
This module is part of the `OCA/intrastat-extrastat <https://github.com/OCA/intrastat-extrastat/tree/19.0/product_harmonized_system_stock>`_ project on GitHub.
100+
101+
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

product_harmonized_system_stock/__init__.py

Whitespace-only changes.
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# Copyright 2019-2022 Akretion France (http://www.akretion.com)
2+
# @author Alexis de Lattre <alexis.delattre@akretion.com>
3+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
4+
5+
{
6+
"name": "Product Harmonized System (menu entry)",
7+
"version": "19.0.1.0.0",
8+
"category": "Reporting",
9+
"license": "AGPL-3",
10+
"summary": "Adds a menu entry for H.S. codes",
11+
"author": "Akretion, Odoo Community Association (OCA)",
12+
"maintainers": ["alexis-via", "luc-demeyer"],
13+
"website": "https://github.com/OCA/intrastat-extrastat",
14+
"depends": ["product_harmonized_system", "stock"],
15+
"data": ["views/hs_code_menu.xml"],
16+
"installable": True,
17+
"auto_install": True,
18+
}
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_harmonized_system_stock
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 12.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2019-12-24 19:05+0000\n"
10+
"Last-Translator: Galoperd <jvcsan@gmail.com>\n"
11+
"Language-Team: none\n"
12+
"Language: es\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 3.9.1\n"
18+
19+
#. module: product_harmonized_system_stock
20+
#: model:ir.ui.menu,name:product_harmonized_system_stock.hs_code_menu
21+
msgid "H.S. Codes"
22+
msgstr "Códigos HS"
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_harmonized_system_stock
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2023-06-07 19:08+0000\n"
10+
"Last-Translator: Alexis de Lattre <alexis@via.ecp.fr>\n"
11+
"Language-Team: none\n"
12+
"Language: fr\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: product_harmonized_system_stock
20+
#: model:ir.ui.menu,name:product_harmonized_system_stock.hs_code_menu
21+
msgid "H.S. Codes"
22+
msgstr "Codes S.H."
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_harmonized_system_stock
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2023-05-26 16:08+0000\n"
10+
"Last-Translator: \"Sandrine (ACSONE)\" <sandrine.ravet@acsone.eu>\n"
11+
"Language-Team: none\n"
12+
"Language: fr_FR\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n > 1;\n"
17+
"X-Generator: Weblate 4.17\n"
18+
19+
#. module: product_harmonized_system_stock
20+
#: model:ir.ui.menu,name:product_harmonized_system_stock.hs_code_menu
21+
msgid "H.S. Codes"
22+
msgstr "Code Intrastat"
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_harmonized_system_stock
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2023-02-15 19:22+0000\n"
10+
"Last-Translator: Bole <bole@dajmi5.com>\n"
11+
"Language-Team: none\n"
12+
"Language: hr\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
17+
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
18+
"X-Generator: Weblate 4.14.1\n"
19+
20+
#. module: product_harmonized_system_stock
21+
#: model:ir.ui.menu,name:product_harmonized_system_stock.hs_code_menu
22+
msgid "H.S. Codes"
23+
msgstr "HS Šifre"
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_harmonized_system_stock
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 16.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"PO-Revision-Date: 2024-12-05 11:06+0000\n"
10+
"Last-Translator: mymage <stefano.consolaro@mymage.it>\n"
11+
"Language-Team: none\n"
12+
"Language: it\n"
13+
"MIME-Version: 1.0\n"
14+
"Content-Type: text/plain; charset=UTF-8\n"
15+
"Content-Transfer-Encoding: \n"
16+
"Plural-Forms: nplurals=2; plural=n != 1;\n"
17+
"X-Generator: Weblate 5.6.2\n"
18+
19+
#. module: product_harmonized_system_stock
20+
#: model:ir.ui.menu,name:product_harmonized_system_stock.hs_code_menu
21+
msgid "H.S. Codes"
22+
msgstr "Codici S.A."
Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
# Translation of Odoo Server.
2+
# This file contains the translation of the following modules:
3+
# * product_harmonized_system_stock
4+
#
5+
msgid ""
6+
msgstr ""
7+
"Project-Id-Version: Odoo Server 18.0\n"
8+
"Report-Msgid-Bugs-To: \n"
9+
"Last-Translator: \n"
10+
"Language-Team: \n"
11+
"MIME-Version: 1.0\n"
12+
"Content-Type: text/plain; charset=UTF-8\n"
13+
"Content-Transfer-Encoding: \n"
14+
"Plural-Forms: \n"
15+
16+
#. module: product_harmonized_system_stock
17+
#: model:ir.ui.menu,name:product_harmonized_system_stock.hs_code_menu
18+
msgid "H.S. Codes"
19+
msgstr ""
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[build-system]
2+
requires = ["whool"]
3+
build-backend = "whool.buildapi"

0 commit comments

Comments
 (0)