mirror of
https://github.com/OCA/intrastat-extrastat.git
synced 2025-02-16 17:13:41 +02:00
[BOT] post-merge updates
This commit is contained in:
@@ -22,7 +22,7 @@ Available addons
|
|||||||
addon | version | maintainers | summary
|
addon | version | maintainers | summary
|
||||||
--- | --- | --- | ---
|
--- | --- | --- | ---
|
||||||
[intrastat_base](intrastat_base/) | 17.0.1.0.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Base module for Intrastat reporting
|
[intrastat_base](intrastat_base/) | 17.0.1.0.0 | [](https://github.com/alexis-via) [](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_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
|
[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 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Base module for Product Import/Export reports
|
[product_harmonized_system](product_harmonized_system/) | 17.0.1.2.0 | [](https://github.com/alexis-via) [](https://github.com/luc-demeyer) | Base module for Product Import/Export reports
|
||||||
|
|||||||
@@ -7,7 +7,7 @@ Intrastat Product
|
|||||||
!! This file is generated by oca-gen-addon-readme !!
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
!! changes will be overwritten. !!
|
!! changes will be overwritten. !!
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
!! source digest: sha256:dbd4da70502d90ac25da6f51e7032e46a16651426528180f6ff43dae63669e4e
|
!! source digest: sha256:3fb40f7c9f01768c0dfa79696fb0b656a66e12fb237cac4094fd05fea8f7ad5d
|
||||||
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
|
||||||
|
|
||||||
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
|
||||||
@@ -34,10 +34,10 @@ reporting.
|
|||||||
It should be used in combination with country-specific Intrastat Product
|
It should be used in combination with country-specific Intrastat Product
|
||||||
reporting modules such as:
|
reporting modules such as:
|
||||||
|
|
||||||
- *l10n_fr_intrastat_product*: the module for the *Déclaration
|
- *l10n_fr_intrastat_product*: the module for the *Déclaration d'Echange
|
||||||
d'Echange de Biens* (DEB) for France
|
de Biens* (DEB) for France
|
||||||
- *l10n_be_intrastat_product*: the module for the Intrastat Product
|
- *l10n_be_intrastat_product*: the module for the Intrastat Product
|
||||||
Declaration for Belgium
|
Declaration for Belgium
|
||||||
|
|
||||||
These country-specific modules can be found in the OCA localization for
|
These country-specific modules can be found in the OCA localization for
|
||||||
those countries.
|
those countries.
|
||||||
@@ -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
|
l10n_be_intrastat_product and adapt the code for the specific needs of
|
||||||
your country.
|
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):
|
class L10nCcIntrastatProductDeclaration(models.Model):
|
||||||
_name = 'l10n.cc.intrastat.product.declaration'
|
_name = 'l10n.cc.intrastat.product.declaration'
|
||||||
_description = "Intrastat Product Declaration for YourCountry"
|
_description = "Intrastat Product Declaration for YourCountry"
|
||||||
_inherit = ['intrastat.product.declaration', 'mail.thread']
|
_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
|
Create also new objects inheriting from the Computation and
|
||||||
Declaration Line Objects so that you can add methods or customise the
|
Declaration Line Objects so that you can add methods or customise the
|
||||||
methods from the base modules (make a PR when the customization or
|
methods from the base modules (make a PR when the customization or new
|
||||||
new method is required for multiple countries).
|
method is required for multiple countries).
|
||||||
|
|
||||||
Adapt also the parent_id fields of the newly created objects (cf.
|
Adapt also the parent_id fields of the newly created objects (cf.
|
||||||
l10n_be_intrastat_product as example).
|
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
|
Cf. l10n_be_istrastat_product as example, replace "be" by your Country
|
||||||
Country Code.
|
Code.
|
||||||
|
|
||||||
**Other functionality added by this module:**
|
**Other functionality added by this module:**
|
||||||
|
|
||||||
- Compute the Intrastat Lines in an invoice. For this, your user needs
|
- Compute the Intrastat Lines in an invoice. For this, your user needs
|
||||||
to be in the "Technical / Invoice Intrastat Transaction Details"
|
to be in the "Technical / Invoice Intrastat Transaction Details"
|
||||||
group. Go to the "Intrastat transaction details" tab and press
|
group. Go to the "Intrastat transaction details" tab and press
|
||||||
**Compute**
|
**Compute**
|
||||||
|
|
||||||
Known issues / Roadmap
|
Known issues / Roadmap
|
||||||
======================
|
======================
|
||||||
@@ -158,16 +158,16 @@ Authors
|
|||||||
Contributors
|
Contributors
|
||||||
------------
|
------------
|
||||||
|
|
||||||
- Alexis de Lattre, Akretion <alexis.delattre@akretion.com>
|
- Alexis de Lattre, Akretion <alexis.delattre@akretion.com>
|
||||||
|
|
||||||
- Luc De Meyer, Noviat <info@noviat.com>
|
- Luc De Meyer, Noviat <info@noviat.com>
|
||||||
|
|
||||||
- Denis Roussel <denis.roussel@acsone.eu>
|
- Denis Roussel <denis.roussel@acsone.eu>
|
||||||
|
|
||||||
- Tecnativa <`www.tecnativa.com\\> <http://www.tecnativa.com\>>`__:
|
- Tecnativa <`www.tecnativa.com\\> <http://www.tecnativa.com\>>`__:
|
||||||
|
|
||||||
- João Marques
|
- João Marques
|
||||||
- Víctor Martínez
|
- Víctor Martínez
|
||||||
|
|
||||||
Maintainers
|
Maintainers
|
||||||
-----------
|
-----------
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
|
|
||||||
{
|
{
|
||||||
"name": "Intrastat Product",
|
"name": "Intrastat Product",
|
||||||
"version": "17.0.1.1.0",
|
"version": "17.0.1.1.1",
|
||||||
"category": "Intrastat",
|
"category": "Intrastat",
|
||||||
"license": "AGPL-3",
|
"license": "AGPL-3",
|
||||||
"summary": "Base module for Intrastat Product",
|
"summary": "Base module for Intrastat Product",
|
||||||
|
|||||||
@@ -367,7 +367,7 @@ ul.auto-toc {
|
|||||||
!! This file is generated by oca-gen-addon-readme !!
|
!! This file is generated by oca-gen-addon-readme !!
|
||||||
!! changes will be overwritten. !!
|
!! 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&target_branch=17.0"><img alt="Try me on Runboat" src="https://img.shields.io/badge/runboat-Try%20me-875A7B.png" /></a></p>
|
<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&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
|
<p>This module contains common objects and fields for the Intrastat Product
|
||||||
@@ -375,8 +375,8 @@ reporting.</p>
|
|||||||
<p>It should be used in combination with country-specific Intrastat Product
|
<p>It should be used in combination with country-specific Intrastat Product
|
||||||
reporting modules such as:</p>
|
reporting modules such as:</p>
|
||||||
<ul class="simple">
|
<ul class="simple">
|
||||||
<li><em>l10n_fr_intrastat_product</em>: the module for the <em>Déclaration
|
<li><em>l10n_fr_intrastat_product</em>: the module for the <em>Déclaration d’Echange
|
||||||
d’Echange de Biens</em> (DEB) for France</li>
|
de Biens</em> (DEB) for France</li>
|
||||||
<li><em>l10n_be_intrastat_product</em>: the module for the Intrastat Product
|
<li><em>l10n_be_intrastat_product</em>: the module for the Intrastat Product
|
||||||
Declaration for Belgium</li>
|
Declaration for Belgium</li>
|
||||||
</ul>
|
</ul>
|
||||||
@@ -446,14 +446,14 @@ your country.</p>
|
|||||||
<li><p class="first">Computation & Declaration Lines</p>
|
<li><p class="first">Computation & Declaration Lines</p>
|
||||||
<p>Create also new objects inheriting from the Computation and
|
<p>Create also new objects inheriting from the Computation and
|
||||||
Declaration Line Objects so that you can add methods or customise the
|
Declaration Line Objects so that you can add methods or customise the
|
||||||
methods from the base modules (make a PR when the customization or
|
methods from the base modules (make a PR when the customization or new
|
||||||
new method is required for multiple countries).</p>
|
method is required for multiple countries).</p>
|
||||||
<p>Adapt also the parent_id fields of the newly created objects (cf.
|
<p>Adapt also the parent_id fields of the newly created objects (cf.
|
||||||
l10n_be_intrastat_product as example).</p>
|
l10n_be_intrastat_product as example).</p>
|
||||||
</li>
|
</li>
|
||||||
<li><p class="first">XML Files: Menu, Action, Views</p>
|
<li><p class="first">XML Files: Menu, Action, Views</p>
|
||||||
<p>Cf. l10n_be_istrastat_product as example, replace “be” by your
|
<p>Cf. l10n_be_istrastat_product as example, replace “be” by your Country
|
||||||
Country Code.</p>
|
Code.</p>
|
||||||
</li>
|
</li>
|
||||||
</ul>
|
</ul>
|
||||||
<p><strong>Other functionality added by this module:</strong></p>
|
<p><strong>Other functionality added by this module:</strong></p>
|
||||||
|
|||||||
Reference in New Issue
Block a user