Skip to content

Commit

Permalink
[BOT] post-merge updates
Browse files Browse the repository at this point in the history
  • Loading branch information
OCA-git-bot committed Dec 4, 2024
1 parent fe8eb06 commit d251cae
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 42 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ Available addons
addon | version | maintainers | summary
--- | --- | --- | ---
[intrastat_base](intrastat_base/) | 17.0.1.0.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) [![luc-demeyer](https://github.com/luc-demeyer.png?size=30px)](https://github.com/luc-demeyer) | Base module for Intrastat reporting
[intrastat_product](intrastat_product/) | 17.0.1.1.0 | | Base module for Intrastat Product
[intrastat_product](intrastat_product/) | 17.0.1.1.1 | | Base module for Intrastat Product
[intrastat_product_generic](intrastat_product_generic/) | 17.0.1.0.0 | | Generic Intrastat Product Declaration
[intrastat_product_hscodes_import](intrastat_product_hscodes_import/) | 17.0.1.0.0 | | Module used to import HS Codes for Intrastat Product
[product_harmonized_system](product_harmonized_system/) | 17.0.1.2.0 | [![alexis-via](https://github.com/alexis-via.png?size=30px)](https://github.com/alexis-via) [![luc-demeyer](https://github.com/luc-demeyer.png?size=30px)](https://github.com/luc-demeyer) | Base module for Product Import/Export reports
Expand Down
66 changes: 33 additions & 33 deletions intrastat_product/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Intrastat Product
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:dbd4da70502d90ac25da6f51e7032e46a16651426528180f6ff43dae63669e4e
!! source digest: sha256:3fb40f7c9f01768c0dfa79696fb0b656a66e12fb237cac4094fd05fea8f7ad5d
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
Expand All @@ -34,10 +34,10 @@ reporting.
It should be used in combination with country-specific Intrastat Product
reporting modules such as:

- *l10n_fr_intrastat_product*: the module for the *Déclaration
d'Echange de Biens* (DEB) for France
- *l10n_be_intrastat_product*: the module for the Intrastat Product
Declaration for Belgium
- *l10n_fr_intrastat_product*: the module for the *Déclaration d'Echange
de Biens* (DEB) for France
- *l10n_be_intrastat_product*: the module for the Intrastat Product
Declaration for Belgium

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

- Declaration Object
- Declaration Object

Create a new class as follows:
Create a new class as follows:

.. code:: python
.. code:: python
class L10nCcIntrastatProductDeclaration(models.Model):
_name = 'l10n.cc.intrastat.product.declaration'
_description = "Intrastat Product Declaration for YourCountry"
_inherit = ['intrastat.product.declaration', 'mail.thread']
class L10nCcIntrastatProductDeclaration(models.Model):
_name = 'l10n.cc.intrastat.product.declaration'
_description = "Intrastat Product Declaration for YourCountry"
_inherit = ['intrastat.product.declaration', 'mail.thread']
whereby cc = your country code
whereby cc = your country code

- Computation & Declaration Lines
- Computation & Declaration Lines

Create also new objects inheriting from the Computation and
Declaration Line Objects so that you can add methods or customise the
methods from the base modules (make a PR when the customization or
new method is required for multiple countries).
Create also new objects inheriting from the Computation and
Declaration Line Objects so that you can add methods or customise the
methods from the base modules (make a PR when the customization or new
method is required for multiple countries).

Adapt also the parent_id fields of the newly created objects (cf.
l10n_be_intrastat_product as example).
Adapt also the parent_id fields of the newly created objects (cf.
l10n_be_intrastat_product as example).

- XML Files: Menu, Action, Views
- XML Files: Menu, Action, Views

Cf. l10n_be_istrastat_product as example, replace "be" by your
Country Code.
Cf. l10n_be_istrastat_product as example, replace "be" by your Country
Code.

**Other functionality added by this module:**

- Compute the Intrastat Lines in an invoice. For this, your user needs
to be in the "Technical / Invoice Intrastat Transaction Details"
group. Go to the "Intrastat transaction details" tab and press
**Compute**
- Compute the Intrastat Lines in an invoice. For this, your user needs
to be in the "Technical / Invoice Intrastat Transaction Details"
group. Go to the "Intrastat transaction details" tab and press
**Compute**

Known issues / Roadmap
======================
Expand Down Expand Up @@ -158,16 +158,16 @@ Authors
Contributors
------------

- Alexis de Lattre, Akretion <[email protected]>
- Alexis de Lattre, Akretion <[email protected]>

- Luc De Meyer, Noviat <[email protected]>
- Luc De Meyer, Noviat <[email protected]>

- Denis Roussel <[email protected]>
- Denis Roussel <[email protected]>

- Tecnativa <`www.tecnativa.com\\> <http://www.tecnativa.com\>>`__:
- Tecnativa <`www.tecnativa.com\\> <http://www.tecnativa.com\>>`__:

- João Marques
- Víctor Martínez
- João Marques
- Víctor Martínez

Maintainers
-----------
Expand Down
2 changes: 1 addition & 1 deletion intrastat_product/__manifest__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

{
"name": "Intrastat Product",
"version": "17.0.1.1.0",
"version": "17.0.1.1.1",
"category": "Intrastat",
"license": "AGPL-3",
"summary": "Base module for Intrastat Product",
Expand Down
14 changes: 7 additions & 7 deletions intrastat_product/static/description/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -367,16 +367,16 @@ <h1 class="title">Intrastat Product</h1>
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:dbd4da70502d90ac25da6f51e7032e46a16651426528180f6ff43dae63669e4e
!! source digest: sha256:3fb40f7c9f01768c0dfa79696fb0b656a66e12fb237cac4094fd05fea8f7ad5d
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
<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>
<p>This module contains common objects and fields for the Intrastat Product
reporting.</p>
<p>It should be used in combination with country-specific Intrastat Product
reporting modules such as:</p>
<ul class="simple">
<li><em>l10n_fr_intrastat_product</em>: the module for the <em>Déclaration
d’Echange de Biens</em> (DEB) for France</li>
<li><em>l10n_fr_intrastat_product</em>: the module for the <em>Déclaration d’Echange
de Biens</em> (DEB) for France</li>
<li><em>l10n_be_intrastat_product</em>: the module for the Intrastat Product
Declaration for Belgium</li>
</ul>
Expand Down Expand Up @@ -446,14 +446,14 @@ <h1><a class="toc-backref" href="#toc-entry-3">Usage</a></h1>
<li><p class="first">Computation &amp; Declaration Lines</p>
<p>Create also new objects inheriting from the Computation and
Declaration Line Objects so that you can add methods or customise the
methods from the base modules (make a PR when the customization or
new method is required for multiple countries).</p>
methods from the base modules (make a PR when the customization or new
method is required for multiple countries).</p>
<p>Adapt also the parent_id fields of the newly created objects (cf.
l10n_be_intrastat_product as example).</p>
</li>
<li><p class="first">XML Files: Menu, Action, Views</p>
<p>Cf. l10n_be_istrastat_product as example, replace “be” by your
Country Code.</p>
<p>Cf. l10n_be_istrastat_product as example, replace “be” by your Country
Code.</p>
</li>
</ul>
<p><strong>Other functionality added by this module:</strong></p>
Expand Down

0 comments on commit d251cae

Please sign in to comment.