Skip to content

Commit bca5ce9

Browse files
committed
[BOT] post-merge updates
1 parent 62708bd commit bca5ce9

4 files changed

Lines changed: 68 additions & 58 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Available addons
2222
addon | version | maintainers | summary
2323
--- | --- | --- | ---
2424
[intrastat_base](intrastat_base/) | 17.0.1.0.0 | <a href='https://github.com/alexis-via'><img src='https://github.com/alexis-via.png' width='32' height='32' style='border-radius:50%;' alt='alexis-via'/></a> <a href='https://github.com/luc-demeyer'><img src='https://github.com/luc-demeyer.png' width='32' height='32' style='border-radius:50%;' alt='luc-demeyer'/></a> | Base module for Intrastat reporting
25-
[intrastat_product](intrastat_product/) | 17.0.1.2.3 | | Base module for Intrastat Product
25+
[intrastat_product](intrastat_product/) | 17.0.1.3.0 | | Base module for Intrastat Product
2626
[intrastat_product_generic](intrastat_product_generic/) | 17.0.1.0.0 | | Generic Intrastat Product Declaration
2727
[intrastat_product_hscodes_import](intrastat_product_hscodes_import/) | 17.0.1.0.0 | | Module used to import HS Codes for Intrastat Product
2828
[product_harmonized_system](product_harmonized_system/) | 17.0.1.2.0 | <a href='https://github.com/alexis-via'><img src='https://github.com/alexis-via.png' width='32' height='32' style='border-radius:50%;' alt='alexis-via'/></a> <a href='https://github.com/luc-demeyer'><img src='https://github.com/luc-demeyer.png' width='32' height='32' style='border-radius:50%;' alt='luc-demeyer'/></a> | Base module for Product Import/Export reports

intrastat_product/README.rst

Lines changed: 39 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
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+
15
=================
26
Intrastat Product
37
=================
@@ -7,13 +11,13 @@ Intrastat Product
711
!! This file is generated by oca-gen-addon-readme !!
812
!! changes will be overwritten. !!
913
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
10-
!! source digest: sha256:2d0130720dd8fb39832362c656667790eeb9f7db928f355d1b9ed4adb27e0f5d
14+
!! source digest: sha256:6029b741dda81259cd2b86f61890163bf2b42573bf8d7675c7d46b4de866b21f
1115
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
1216
1317
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
1418
:target: https://odoo-community.org/page/development-status
1519
:alt: Beta
16-
.. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png
20+
.. |badge2| image:: https://img.shields.io/badge/license-AGPL--3-blue.png
1721
:target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
1822
:alt: License: AGPL-3
1923
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fintrastat--extrastat-lightgray.png?logo=github
@@ -34,10 +38,10 @@ reporting.
3438
It should be used in combination with country-specific Intrastat Product
3539
reporting modules such as:
3640

37-
- *l10n_fr_intrastat_product*: the module for the *Déclaration
38-
d'Echange de Biens* (DEB) for France
39-
- *l10n_be_intrastat_product*: the module for the Intrastat Product
40-
Declaration for Belgium
41+
- *l10n_fr_intrastat_product*: the module for the *Déclaration d'Echange
42+
de Biens* (DEB) for France
43+
- *l10n_be_intrastat_product*: the module for the Intrastat Product
44+
Declaration for Belgium
4145

4246
These country-specific modules can be found in the OCA localization for
4347
those countries.
@@ -90,40 +94,40 @@ We recommend to start by copying an existing module, e.g.
9094
l10n_be_intrastat_product and adapt the code for the specific needs of
9195
your country.
9296

93-
- Declaration Object
97+
- Declaration Object
9498

95-
Create a new class as follows:
99+
Create a new class as follows:
96100

97-
.. code:: python
101+
.. code:: python
98102
99-
class L10nCcIntrastatProductDeclaration(models.Model):
100-
_name = 'l10n.cc.intrastat.product.declaration'
101-
_description = "Intrastat Product Declaration for YourCountry"
102-
_inherit = ['intrastat.product.declaration', 'mail.thread']
103+
class L10nCcIntrastatProductDeclaration(models.Model):
104+
_name = 'l10n.cc.intrastat.product.declaration'
105+
_description = "Intrastat Product Declaration for YourCountry"
106+
_inherit = ['intrastat.product.declaration', 'mail.thread']
103107
104-
whereby cc = your country code
108+
whereby cc = your country code
105109

106-
- Computation & Declaration Lines
110+
- Computation & Declaration Lines
107111

108-
Create also new objects inheriting from the Computation and
109-
Declaration Line Objects so that you can add methods or customise the
110-
methods from the base modules (make a PR when the customization or
111-
new method is required for multiple countries).
112+
Create also new objects inheriting from the Computation and
113+
Declaration Line Objects so that you can add methods or customise the
114+
methods from the base modules (make a PR when the customization or new
115+
method is required for multiple countries).
112116

113-
Adapt also the parent_id fields of the newly created objects (cf.
114-
l10n_be_intrastat_product as example).
117+
Adapt also the parent_id fields of the newly created objects (cf.
118+
l10n_be_intrastat_product as example).
115119

116-
- XML Files: Menu, Action, Views
120+
- XML Files: Menu, Action, Views
117121

118-
Cf. l10n_be_istrastat_product as example, replace "be" by your
119-
Country Code.
122+
Cf. l10n_be_istrastat_product as example, replace "be" by your Country
123+
Code.
120124

121125
**Other functionality added by this module:**
122126

123-
- Compute the Intrastat Lines in an invoice. For this, your user needs
124-
to be in the "Technical / Invoice Intrastat Transaction Details"
125-
group. Go to the "Intrastat transaction details" tab and press
126-
**Compute**
127+
- Compute the Intrastat Lines in an invoice. For this, your user needs
128+
to be in the "Technical / Invoice Intrastat Transaction Details"
129+
group. Go to the "Intrastat transaction details" tab and press
130+
**Compute**
127131

128132
Known issues / Roadmap
129133
======================
@@ -158,17 +162,17 @@ Authors
158162
Contributors
159163
------------
160164

161-
- Alexis de Lattre, Akretion <alexis.delattre@akretion.com>
165+
- Alexis de Lattre, Akretion <alexis.delattre@akretion.com>
162166

163-
- Luc De Meyer, Noviat <info@noviat.com>
167+
- Luc De Meyer, Noviat <info@noviat.com>
164168

165-
- Denis Roussel <denis.roussel@acsone.eu>
169+
- Denis Roussel <denis.roussel@acsone.eu>
166170

167-
- Tecnativa <`www.tecnativa.com\\> <http://www.tecnativa.com\>>`__:
171+
- Tecnativa <`www.tecnativa.com\\> <http://www.tecnativa.com\>>`__:
168172

169-
- João Marques
170-
- Víctor Martínez
171-
- Juan Carlos Oñate
173+
- João Marques
174+
- Víctor Martínez
175+
- Juan Carlos Oñate
172176

173177
Maintainers
174178
-----------

intrastat_product/__manifest__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
{
99
"name": "Intrastat Product",
10-
"version": "17.0.1.2.3",
10+
"version": "17.0.1.3.0",
1111
"category": "Intrastat",
1212
"license": "AGPL-3",
1313
"summary": "Base module for Intrastat Product",

intrastat_product/static/description/index.html

Lines changed: 27 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<head>
44
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
55
<meta name="generator" content="Docutils: https://docutils.sourceforge.io/" />
6-
<title>Intrastat Product</title>
6+
<title>README.rst</title>
77
<style type="text/css">
88

99
/*
@@ -360,23 +360,28 @@
360360
</style>
361361
</head>
362362
<body>
363-
<div class="document" id="intrastat-product">
364-
<h1 class="title">Intrastat Product</h1>
363+
<div class="document">
365364

365+
366+
<a class="reference external image-reference" href="https://odoo-community.org/get-involved?utm_source=readme">
367+
<img alt="Odoo Community Association" src="https://odoo-community.org/readme-banner-image" />
368+
</a>
369+
<div class="section" id="intrastat-product">
370+
<h1>Intrastat Product</h1>
366371
<!-- !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
367372
!! This file is generated by oca-gen-addon-readme !!
368373
!! changes will be overwritten. !!
369374
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
370-
!! source digest: sha256:2d0130720dd8fb39832362c656667790eeb9f7db928f355d1b9ed4adb27e0f5d
375+
!! source digest: sha256:6029b741dda81259cd2b86f61890163bf2b42573bf8d7675c7d46b4de866b21f
371376
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
372-
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/licence-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/intrastat-extrastat/tree/17.0/intrastat_product"><img alt="OCA/intrastat-extrastat" src="https://img.shields.io/badge/github-OCA%2Fintrastat--extrastat-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/intrastat-extrastat-17-0/intrastat-extrastat-17-0-intrastat_product"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/intrastat-extrastat&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
377+
<p><a class="reference external image-reference" href="https://odoo-community.org/page/development-status"><img alt="Beta" src="https://img.shields.io/badge/maturity-Beta-yellow.png" /></a> <a class="reference external image-reference" href="http://www.gnu.org/licenses/agpl-3.0-standalone.html"><img alt="License: AGPL-3" src="https://img.shields.io/badge/license-AGPL--3-blue.png" /></a> <a class="reference external image-reference" href="https://github.com/OCA/intrastat-extrastat/tree/17.0/intrastat_product"><img alt="OCA/intrastat-extrastat" src="https://img.shields.io/badge/github-OCA%2Fintrastat--extrastat-lightgray.png?logo=github" /></a> <a class="reference external image-reference" href="https://translation.odoo-community.org/projects/intrastat-extrastat-17-0/intrastat-extrastat-17-0-intrastat_product"><img alt="Translate me on Weblate" src="https://img.shields.io/badge/weblate-Translate%20me-F47D42.png" /></a> <a class="reference external image-reference" href="https://runboat.odoo-community.org/builds?repo=OCA/intrastat-extrastat&amp;target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
373378
<p>This module contains common objects and fields for the Intrastat Product
374379
reporting.</p>
375380
<p>It should be used in combination with country-specific Intrastat Product
376381
reporting modules such as:</p>
377382
<ul class="simple">
378-
<li><em>l10n_fr_intrastat_product</em>: the module for the <em>Déclaration
379-
d’Echange de Biens</em> (DEB) for France</li>
383+
<li><em>l10n_fr_intrastat_product</em>: the module for the <em>Déclaration d’Echange
384+
de Biens</em> (DEB) for France</li>
380385
<li><em>l10n_be_intrastat_product</em>: the module for the Intrastat Product
381386
Declaration for Belgium</li>
382387
</ul>
@@ -399,7 +404,7 @@ <h1 class="title">Intrastat Product</h1>
399404
</ul>
400405
</div>
401406
<div class="section" id="installation">
402-
<h1><a class="toc-backref" href="#toc-entry-1">Installation</a></h1>
407+
<h2><a class="toc-backref" href="#toc-entry-1">Installation</a></h2>
403408
<p>This module is NOT compatible with the <em>account_intrastat</em> module from
404409
Odoo Enterprise.</p>
405410
<p>We recommended to install the module <strong>product_net_weight</strong> from
@@ -409,7 +414,7 @@ <h1><a class="toc-backref" href="#toc-entry-1">Installation</a></h1>
409414
<em>Weight</em> field.</p>
410415
</div>
411416
<div class="section" id="configuration">
412-
<h1><a class="toc-backref" href="#toc-entry-2">Configuration</a></h1>
417+
<h2><a class="toc-backref" href="#toc-entry-2">Configuration</a></h2>
413418
<p>By default the intrastat declaration is generated based upon the product
414419
record master data. Hence unexpected results may occur in case this
415420
master data is not accurate, e.g. wrong or missing weight, country of
@@ -425,7 +430,7 @@ <h1><a class="toc-backref" href="#toc-entry-2">Configuration</a></h1>
425430
group.</p>
426431
</div>
427432
<div class="section" id="usage">
428-
<h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
433+
<h2><a class="toc-backref" href="#toc-entry-3">Usage</a></h2>
429434
<p>This module is used in combination with the country-specific
430435
localization module(s).</p>
431436
<p><strong>Coding guidelines for localization module:</strong></p>
@@ -436,7 +441,7 @@ <h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
436441
<li><p class="first">Declaration Object</p>
437442
<p>Create a new class as follows:</p>
438443
<pre class="code python literal-block">
439-
<span class="k">class</span> <span class="nc">L10nCcIntrastatProductDeclaration</span><span class="p">(</span><span class="n">models</span><span class="o">.</span><span class="n">Model</span><span class="p">):</span><span class="w">
444+
<span class="k">class</span><span class="w"> </span><span class="nc">L10nCcIntrastatProductDeclaration</span><span class="p">(</span><span class="n">models</span><span class="o">.</span><span class="n">Model</span><span class="p">):</span><span class="w">
440445
</span> <span class="n">_name</span> <span class="o">=</span> <span class="s1">'l10n.cc.intrastat.product.declaration'</span><span class="w">
441446
</span> <span class="n">_description</span> <span class="o">=</span> <span class="s2">&quot;Intrastat Product Declaration for YourCountry&quot;</span><span class="w">
442447
</span> <span class="n">_inherit</span> <span class="o">=</span> <span class="p">[</span><span class="s1">'intrastat.product.declaration'</span><span class="p">,</span> <span class="s1">'mail.thread'</span><span class="p">]</span>
@@ -446,14 +451,14 @@ <h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
446451
<li><p class="first">Computation &amp; Declaration Lines</p>
447452
<p>Create also new objects inheriting from the Computation and
448453
Declaration Line Objects so that you can add methods or customise the
449-
methods from the base modules (make a PR when the customization or
450-
new method is required for multiple countries).</p>
454+
methods from the base modules (make a PR when the customization or new
455+
method is required for multiple countries).</p>
451456
<p>Adapt also the parent_id fields of the newly created objects (cf.
452457
l10n_be_intrastat_product as example).</p>
453458
</li>
454459
<li><p class="first">XML Files: Menu, Action, Views</p>
455-
<p>Cf. l10n_be_istrastat_product as example, replace “be” by your
456-
Country Code.</p>
460+
<p>Cf. l10n_be_istrastat_product as example, replace “be” by your Country
461+
Code.</p>
457462
</li>
458463
</ul>
459464
<p><strong>Other functionality added by this module:</strong></p>
@@ -465,24 +470,24 @@ <h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
465470
</ul>
466471
</div>
467472
<div class="section" id="known-issues-roadmap">
468-
<h1><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h1>
473+
<h2><a class="toc-backref" href="#toc-entry-4">Known issues / Roadmap</a></h2>
469474
<p>The declaration is based upon the invoices of the corresponding tax
470475
declaration period.</p>
471476
<p>An option to generate the intrastat declaration based upon the dates of
472477
the physical movements of goods is currently not available.</p>
473478
</div>
474479
<div class="section" id="bug-tracker">
475-
<h1><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h1>
480+
<h2><a class="toc-backref" href="#toc-entry-5">Bug Tracker</a></h2>
476481
<p>Bugs are tracked on <a class="reference external" href="https://github.com/OCA/intrastat-extrastat/issues">GitHub Issues</a>.
477482
In case of trouble, please check there if your issue has already been reported.
478483
If you spotted it first, help us to smash it by providing a detailed and welcomed
479484
<a class="reference external" href="https://github.com/OCA/intrastat-extrastat/issues/new?body=module:%20intrastat_product%0Aversion:%2017.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**">feedback</a>.</p>
480485
<p>Do not contact contributors directly about support or help with technical issues.</p>
481486
</div>
482487
<div class="section" id="credits">
483-
<h1><a class="toc-backref" href="#toc-entry-6">Credits</a></h1>
488+
<h2><a class="toc-backref" href="#toc-entry-6">Credits</a></h2>
484489
<div class="section" id="authors">
485-
<h2><a class="toc-backref" href="#toc-entry-7">Authors</a></h2>
490+
<h3><a class="toc-backref" href="#toc-entry-7">Authors</a></h3>
486491
<ul class="simple">
487492
<li>ACSONE SA/NV</li>
488493
<li>brain-tec AG</li>
@@ -491,7 +496,7 @@ <h2><a class="toc-backref" href="#toc-entry-7">Authors</a></h2>
491496
</ul>
492497
</div>
493498
<div class="section" id="contributors">
494-
<h2><a class="toc-backref" href="#toc-entry-8">Contributors</a></h2>
499+
<h3><a class="toc-backref" href="#toc-entry-8">Contributors</a></h3>
495500
<ul>
496501
<li><p class="first">Alexis de Lattre, Akretion &lt;<a class="reference external" href="mailto:alexis.delattre&#64;akretion.com">alexis.delattre&#64;akretion.com</a>&gt;</p>
497502
</li>
@@ -511,7 +516,7 @@ <h2><a class="toc-backref" href="#toc-entry-8">Contributors</a></h2>
511516
</ul>
512517
</div>
513518
<div class="section" id="maintainers">
514-
<h2><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h2>
519+
<h3><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h3>
515520
<p>This module is maintained by the OCA.</p>
516521
<a class="reference external image-reference" href="https://odoo-community.org">
517522
<img alt="Odoo Community Association" src="https://odoo-community.org/logo.png" />
@@ -524,5 +529,6 @@ <h2><a class="toc-backref" href="#toc-entry-9">Maintainers</a></h2>
524529
</div>
525530
</div>
526531
</div>
532+
</div>
527533
</body>
528534
</html>

0 commit comments

Comments
 (0)