diff --git a/README.md b/README.md index f4274369ef..a1356e8cd0 100644 --- a/README.md +++ b/README.md @@ -55,7 +55,8 @@ addon | version | maintainers | summary [edi_pdf2data_oca](edi_pdf2data_oca/) | 14.0.1.0.1 | [![etobella](https://github.com/etobella.png?size=30px)](https://github.com/etobella) | Module that allows to import data from a pdf [edi_purchase_oca](edi_purchase_oca/) | 14.0.1.0.0 | | Define EDI Configuration for Purchase Orders [edi_sale_endpoint](edi_sale_endpoint/) | 14.0.1.0.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | Glue module between edi_sale_oca and edi_endpoint_oca. -[edi_sale_oca](edi_sale_oca/) | 14.0.1.0.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | Configuration and special behaviors for EDI on sales. +[edi_sale_input_oca](edi_sale_input_oca/) | 14.0.1.0.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | Process incoming sale orders with the EDI framework. +[edi_sale_oca](edi_sale_oca/) | 14.0.2.0.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | Configuration and special behaviors for EDI on sales. [edi_sale_order_import](edi_sale_order_import/) | 14.0.2.0.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | MODULE DEPRECATED: use `edi_sale_oca`. Plug sale_order_import into EDI machinery. [edi_sale_order_import_ubl](edi_sale_order_import_ubl/) | 14.0.1.0.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | Plug sale_order_import_ubl into EDI machinery. [edi_sale_order_import_ubl_endpoint](edi_sale_order_import_ubl_endpoint/) | 14.0.1.1.0 | [![simahawk](https://github.com/simahawk.png?size=30px)](https://github.com/simahawk) | Provide a default endpoint to import SO in UBL format. diff --git a/edi_sale_input_oca/README.rst b/edi_sale_input_oca/README.rst index aab07cbf95..ec7bb12c13 100644 --- a/edi_sale_input_oca/README.rst +++ b/edi_sale_input_oca/README.rst @@ -1 +1,122 @@ -bot please :) +=============== +EDI Sales input +=============== + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:6bac56d30c22c1b6f4859f09173ce19415d7b030284b81e620e58242bf99f60b + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :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-OCA%2Fedi-lightgray.png?logo=github + :target: https://github.com/OCA/edi/tree/14.0/edi_sale_input_oca + :alt: OCA/edi +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/edi-14-0/edi-14-0-edi_sale_input_oca + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/edi&target_branch=14.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Inbound +~~~~~~~ +Receive sale orders from EDI channels. + +Control sale order confirmation +~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ + +You can decide if the order should be confirmed by exchange type. + +On your exchange type, go to advanced settings and add the following:: + + [...] + components: + process: + usage: input.process.sale.order + env_ctx: + # Values for the wizard + default_confirm_order: true + default_price_source: order + # Custom keys, whatever you need + random_one: true + +Note that `env_ctx` will propagate all keys to the whole env so you can use it +for any kind of context related configuration. In the case of the sale order import wizard +here we are just passing defaults as we could do in odoo standard. + +TODO: shall we add an exchange type example as demo? + +.. 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:: + :local: + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Simone Orsi +* Duong (Tran Quoc) +* Thien (Vo Hong) + +Other credits +~~~~~~~~~~~~~ + +The migration of this module from 14.0 to 16.0 was financially supported by Camptocamp. + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-simahawk| image:: https://github.com/simahawk.png?size=40px + :target: https://github.com/simahawk + :alt: simahawk + +Current `maintainer `__: + +|maintainer-simahawk| + +This module is part of the `OCA/edi `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/edi_sale_input_oca/static/description/icon.png b/edi_sale_input_oca/static/description/icon.png new file mode 100644 index 0000000000..3a0328b516 Binary files /dev/null and b/edi_sale_input_oca/static/description/icon.png differ diff --git a/edi_sale_input_oca/static/description/index.html b/edi_sale_input_oca/static/description/index.html new file mode 100644 index 0000000000..f72c802d9d --- /dev/null +++ b/edi_sale_input_oca/static/description/index.html @@ -0,0 +1,456 @@ + + + + + +EDI Sales input + + + +
+

EDI Sales input

+ + +

Alpha License: AGPL-3 OCA/edi Translate me on Weblate Try me on Runboat

+
+

Inbound

+

Receive sale orders from EDI channels.

+
+
+

Control sale order confirmation

+

You can decide if the order should be confirmed by exchange type.

+

On your exchange type, go to advanced settings and add the following:

+
+[...]
+components:
+    process:
+        usage: input.process.sale.order
+    env_ctx:
+            # Values for the wizard
+            default_confirm_order: true
+            default_price_source: order
+            # Custom keys, whatever you need
+            random_one: true
+
+

Note that env_ctx will propagate all keys to the whole env so you can use it +for any kind of context related configuration. In the case of the sale order import wizard +here we are just passing defaults as we could do in odoo standard.

+

TODO: shall we add an exchange type example as demo?

+
+

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

+ +
+

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 to smash it by providing a detailed and welcomed +feedback.

+

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

+
+ +
+
+

Authors

+
    +
  • Camptocamp
  • +
+
+
+

Contributors

+ +
+
+

Other credits

+

The migration of this module from 14.0 to 16.0 was financially supported by Camptocamp.

+
+
+

Maintainers

+

This module is maintained by the OCA.

+ +Odoo Community Association + +

OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use.

+

Current maintainer:

+

simahawk

+

This module is part of the OCA/edi project on GitHub.

+

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

+
+
+ + diff --git a/edi_sale_oca/README.rst b/edi_sale_oca/README.rst index aab07cbf95..b1f2fdbc93 100644 --- a/edi_sale_oca/README.rst +++ b/edi_sale_oca/README.rst @@ -1 +1,102 @@ -bot please :) +========= +EDI Sales +========= + +.. + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! This file is generated by oca-gen-addon-readme !! + !! changes will be overwritten. !! + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + !! source digest: sha256:8815b97d0e7b1c4509841e20a0d52042fc9c17556f816fc8a7c11918c59c3b32 + !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! + +.. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png + :target: https://odoo-community.org/page/development-status + :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-OCA%2Fedi-lightgray.png?logo=github + :target: https://github.com/OCA/edi/tree/14.0/edi_sale_oca + :alt: OCA/edi +.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png + :target: https://translation.odoo-community.org/projects/edi-14-0/edi-14-0-edi_sale_oca + :alt: Translate me on Weblate +.. |badge5| image:: https://img.shields.io/badge/runboat-Try%20me-875A7B.png + :target: https://runboat.odoo-community.org/builds?repo=OCA/edi&target_branch=14.0 + :alt: Try me on Runboat + +|badge1| |badge2| |badge3| |badge4| |badge5| + +Handle sale orders via EDI. + +This is a base module to plug sales processes with the EDI framework. + +To handle inbound/outbound sale orders, +you need to use `edi_sale_input_oca` or `edi_sale_output_oca` modules, +or create your own modules. + +.. 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:: + :local: + +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 to smash it by providing a detailed and welcomed +`feedback `_. + +Do not contact contributors directly about support or help with technical issues. + +Credits +======= + +Authors +~~~~~~~ + +* Camptocamp + +Contributors +~~~~~~~~~~~~ + +* Simone Orsi +* Duong (Tran Quoc) +* Thien (Vo Hong) + +Other credits +~~~~~~~~~~~~~ + +The migration of this module from 14.0 to 16.0 was financially supported by Camptocamp. + +Maintainers +~~~~~~~~~~~ + +This module is maintained by the OCA. + +.. image:: https://odoo-community.org/logo.png + :alt: Odoo Community Association + :target: https://odoo-community.org + +OCA, or the Odoo Community Association, is a nonprofit organization whose +mission is to support the collaborative development of Odoo features and +promote its widespread use. + +.. |maintainer-simahawk| image:: https://github.com/simahawk.png?size=40px + :target: https://github.com/simahawk + :alt: simahawk + +Current `maintainer `__: + +|maintainer-simahawk| + +This module is part of the `OCA/edi `_ project on GitHub. + +You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/edi_sale_oca/static/description/index.html b/edi_sale_oca/static/description/index.html index 1bd71727d2..efbbaebb8b 100644 --- a/edi_sale_oca/static/description/index.html +++ b/edi_sale_oca/static/description/index.html @@ -367,33 +367,14 @@

EDI Sales

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:8cc00af990de28ee9679466fc10bfcfe395035c200137f800be3a5fbf69b987e +!! source digest: sha256:8815b97d0e7b1c4509841e20a0d52042fc9c17556f816fc8a7c11918c59c3b32 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Alpha License: AGPL-3 OCA/edi Translate me on Weblate Try me on Runboat

-
-

Inbound

-

Receive sale orders from EDI channels.

-
-
-

Control sale order confirmation

-

You can decide if the order should be confirmed by exchange type.

-

On your exchange type, go to advanced settings and add the following:

-
-[...]
-components:
-    process:
-        usage: input.process.sale.order
-    env_ctx:
-            # Values for the wizard
-            default_confirm_order: true
-            default_price_source: order
-            # Custom keys, whatever you need
-            random_one: true
-
-

Note that env_ctx will propagate all keys to the whole env so you can use it -for any kind of context related configuration. In the case of the sale order import wizard -here we are just passing defaults as we could do in odoo standard.

-

TODO: shall we add an exchange type example as demo?

+

Handle sale orders via EDI.

+

This is a base module to plug sales processes with the EDI framework.

+

To handle inbound/outbound sale orders, +you need to use edi_sale_input_oca or edi_sale_output_oca modules, +or create your own modules.

Important

This is an alpha version, the data model and design can change at any time without warning. @@ -404,11 +385,17 @@

Control sale order confirmation

-

Bug Tracker

+

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 to smash it by providing a detailed and welcomed @@ -416,17 +403,15 @@

Bug Tracker

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

-
+

Credits

-

Authors

+

Authors

  • Camptocamp
-

Contributors

+

Contributors

-

Other credits

+

Other credits

The migration of this module from 14.0 to 16.0 was financially supported by Camptocamp.

+ diff --git a/edi_sale_order_import/README.rst b/edi_sale_order_import/README.rst index 2008bf70b3..35955c9d06 100644 --- a/edi_sale_order_import/README.rst +++ b/edi_sale_order_import/README.rst @@ -7,7 +7,7 @@ EDI Sale order import !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:83201a8498237dc96e08a2ebe8a2fbdbca2c2ff3d64490119577051cc656e871 + !! source digest: sha256:5e8dd23441e39a3f9b76431896bac9b01bfb30144729525b0e517189f8a6beb6 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Alpha-red.png @@ -28,7 +28,7 @@ EDI Sale order import |badge1| |badge2| |badge3| |badge4| |badge5| -DEPRECATED: use `edi_sale_oca`. +DEPRECATED: use `edi_sale_input_oca`. Plug sale_order_import into EDI machinery. diff --git a/edi_sale_order_import/static/description/index.html b/edi_sale_order_import/static/description/index.html index 3ecbda9a37..1c8cd4769f 100644 --- a/edi_sale_order_import/static/description/index.html +++ b/edi_sale_order_import/static/description/index.html @@ -367,10 +367,10 @@

EDI Sale order import

!! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:83201a8498237dc96e08a2ebe8a2fbdbca2c2ff3d64490119577051cc656e871 +!! source digest: sha256:5e8dd23441e39a3f9b76431896bac9b01bfb30144729525b0e517189f8a6beb6 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Alpha License: AGPL-3 OCA/edi Translate me on Weblate Try me on Runboat

-

DEPRECATED: use edi_sale_oca.

+

DEPRECATED: use edi_sale_input_oca.

Plug sale_order_import into EDI machinery.

Control sale order confirmation

diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 6409e62dc7..7e425e165a 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -14.0.20241114.1 \ No newline at end of file +14.0.20241129.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 55c7bcdddc..135cb15c64 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -42,6 +42,7 @@ 'odoo14-addon-edi_pdf2data_oca', 'odoo14-addon-edi_purchase_oca', 'odoo14-addon-edi_sale_endpoint', + 'odoo14-addon-edi_sale_input_oca', 'odoo14-addon-edi_sale_oca', 'odoo14-addon-edi_sale_order_import', 'odoo14-addon-edi_sale_order_import_ubl',