diff --git a/shopinvader_product_brand/README.rst b/shopinvader_product_brand/README.rst index d62695aef1..ff2586d34e 100644 --- a/shopinvader_product_brand/README.rst +++ b/shopinvader_product_brand/README.rst @@ -7,22 +7,36 @@ Shopinvader Product Brand !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png :target: https://odoo-community.org/page/development-status - :alt: Beta + :alt: Alpha .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-shopinvader%2Fodoo--shopinvader-lightgray.png?logo=github - :target: https://github.com/shopinvader/odoo-shopinvader/tree/14.0/shopinvader_product_brand + :target: https://github.com/shopinvader/odoo-shopinvader/tree/16.0/shopinvader_product_brand :alt: shopinvader/odoo-shopinvader |badge1| |badge2| |badge3| -This module allow you to manage brand on your `Shopinvader`_ website +This module focus on the serialization of brand information into JSON objects +in the context of the `Shopinvader`_ project. These information are mainly used +to be made available for a `Shopinvader`_ website through an export to search +engine indexation services like ElasticSearch / OpenSearch. + +* It defines a new specific Pydantic model to be used to serialize a *product.brand* + record into a JSON object. + +* It extends the ProductProduct Pydantic model to add the brand information in the + JSON exported for a product.product record. .. _Shopinvader: https://shopinvader.com +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ + **Table of contents** .. contents:: @@ -34,7 +48,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -51,10 +65,11 @@ Contributors * Sebastien BEAU * Simone Orsi +* Marie Lejeune Maintainers ~~~~~~~~~~~ -This module is part of the `shopinvader/odoo-shopinvader `_ project on GitHub. +This module is part of the `shopinvader/odoo-shopinvader `_ project on GitHub. You are welcome to contribute. diff --git a/shopinvader_product_brand/static/description/index.html b/shopinvader_product_brand/static/description/index.html index f2e6ee0cf6..17427de090 100644 --- a/shopinvader_product_brand/static/description/index.html +++ b/shopinvader_product_brand/static/description/index.html @@ -367,8 +367,23 @@

Shopinvader Product Brand

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 shopinvader/odoo-shopinvader

-

This module allow you to manage brand on your Shopinvader website

+

Alpha License: AGPL-3 shopinvader/odoo-shopinvader

+

This module focus on the serialization of brand information into JSON objects +in the context of the Shopinvader project. These information are mainly used +to be made available for a Shopinvader website through an export to search +engine indexation services like ElasticSearch / OpenSearch.

+
    +
  • It defines a new specific Pydantic model to be used to serialize a product.brand +record into a JSON object.
  • +
  • It extends the ProductProduct Pydantic model to add the brand information in the +JSON exported for a product.product record.
  • +
+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+

Table of contents

    @@ -386,7 +401,7 @@

    Bug Tracker

    Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

    +feedback.

    Do not contact contributors directly about support or help with technical issues.

@@ -402,11 +417,12 @@

Contributors

Maintainers

-

This module is part of the shopinvader/odoo-shopinvader project on GitHub.

+

This module is part of the shopinvader/odoo-shopinvader project on GitHub.

You are welcome to contribute.

diff --git a/shopinvader_search_engine_product_brand/README.rst b/shopinvader_search_engine_product_brand/README.rst index d62695aef1..face38ea5d 100644 --- a/shopinvader_search_engine_product_brand/README.rst +++ b/shopinvader_search_engine_product_brand/README.rst @@ -1,27 +1,33 @@ -========================= -Shopinvader Product Brand -========================= +======================================= +Shopinvader Search Engine Product Brand +======================================= .. !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png :target: https://odoo-community.org/page/development-status - :alt: Beta + :alt: Alpha .. |badge2| image:: https://img.shields.io/badge/licence-AGPL--3-blue.png :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-shopinvader%2Fodoo--shopinvader-lightgray.png?logo=github - :target: https://github.com/shopinvader/odoo-shopinvader/tree/14.0/shopinvader_product_brand + :target: https://github.com/shopinvader/odoo-shopinvader/tree/16.0/shopinvader_search_engine_product_brand :alt: shopinvader/odoo-shopinvader |badge1| |badge2| |badge3| -This module allow you to manage brand on your `Shopinvader`_ website +This module makes your *product.brand* model exportable to a search engine. It +defines an register a specific serializer for this model to be used when configuring +your indexes into odoo. This serializer is based on a Pydantic model defined +by the *shopinvader_product_brand* module. -.. _Shopinvader: https://shopinvader.com +.. IMPORTANT:: + This is an alpha version, the data model and design can change at any time without warning. + Only for development or testing purpose, do not use in production. + `More details on development status `_ **Table of contents** @@ -34,7 +40,7 @@ Bug Tracker Bugs are tracked on `GitHub Issues `_. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -`feedback `_. +`feedback `_. Do not contact contributors directly about support or help with technical issues. @@ -44,17 +50,16 @@ Credits Authors ~~~~~~~ -* Akretion +* ACSONE SA/NV Contributors ~~~~~~~~~~~~ -* Sebastien BEAU -* Simone Orsi +* Marie Lejeune Maintainers ~~~~~~~~~~~ -This module is part of the `shopinvader/odoo-shopinvader `_ project on GitHub. +This module is part of the `shopinvader/odoo-shopinvader `_ project on GitHub. You are welcome to contribute. diff --git a/shopinvader_search_engine_product_brand/static/description/index.html b/shopinvader_search_engine_product_brand/static/description/index.html index f2e6ee0cf6..2bca92dc61 100644 --- a/shopinvader_search_engine_product_brand/static/description/index.html +++ b/shopinvader_search_engine_product_brand/static/description/index.html @@ -4,7 +4,7 @@ -Shopinvader Product Brand +Shopinvader Search Engine Product Brand -
-

Shopinvader Product Brand

+
+

Shopinvader Search Engine Product Brand

-

Beta License: AGPL-3 shopinvader/odoo-shopinvader

-

This module allow you to manage brand on your Shopinvader website

+

Alpha License: AGPL-3 shopinvader/odoo-shopinvader

+

This module makes your product.brand model exportable to a search engine. It +defines an register a specific serializer for this model to be used when configuring +your indexes into odoo. This serializer is based on a Pydantic model defined +by the shopinvader_product_brand module.

+
+

Important

+

This is an alpha version, the data model and design can change at any time without warning. +Only for development or testing purpose, do not use in production. +More details on development status

+

Table of contents

    @@ -386,7 +395,7 @@

    Bug Tracker

    Bugs are tracked on GitHub Issues. In case of trouble, please check there if your issue has already been reported. If you spotted it first, help us smashing it by providing a detailed and welcomed -feedback.

    +feedback.

    Do not contact contributors directly about support or help with technical issues.

@@ -394,19 +403,18 @@

Credits

Authors

    -
  • Akretion
  • +
  • ACSONE SA/NV

Maintainers

-

This module is part of the shopinvader/odoo-shopinvader project on GitHub.

+

This module is part of the shopinvader/odoo-shopinvader project on GitHub.

You are welcome to contribute.