diff --git a/README.md b/README.md index 0f877856a..8a4ed2527 100644 --- a/README.md +++ b/README.md @@ -22,6 +22,7 @@ Available addons addon | version | maintainers | summary --- | --- | --- | --- [account_move_line_mrp_info](account_move_line_mrp_info/) | 15.0.1.1.0 | | Account Move Line Mrp Info +[mrp_2_steps_consumed_qty_sync](mrp_2_steps_consumed_qty_sync/) | 15.0.0.1.0 | [![sergio-teruel](https://github.com/sergio-teruel.png?size=30px)](https://github.com/sergio-teruel) | Update consumed quantities when in 2 steps production scope the picking is validated [mrp_account_analytic](mrp_account_analytic/) | 15.0.1.0.2 | [![dreispt](https://github.com/dreispt.png?size=30px)](https://github.com/dreispt) | Consuming raw materials and operations generated Analytic Items [mrp_account_bom_attribute_match](mrp_account_bom_attribute_match/) | 15.0.1.1.1 | [![ivantodorovich](https://github.com/ivantodorovich.png?size=30px)](https://github.com/ivantodorovich) | Glue module between `mrp_account` and `mrp_bom_attribute_match` [mrp_bom_attribute_match](mrp_bom_attribute_match/) | 15.0.1.1.1 | | Dynamic BOM component based on product attribute diff --git a/mrp_2_steps_consumed_qty_sync/README.rst b/mrp_2_steps_consumed_qty_sync/README.rst index d4f6291f9..fc8f8ab9e 100644 --- a/mrp_2_steps_consumed_qty_sync/README.rst +++ b/mrp_2_steps_consumed_qty_sync/README.rst @@ -7,7 +7,7 @@ MRP 2 steps consumed qty sync !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! - !! source digest: sha256:bf57d7cafed692fe20d0710b88e16940f6dd8eeda49c9490253d6468ede6ded8 + !! source digest: sha256:ad1dbe1cc8310ec57f18ff37d70e9793783ce52ace8d4a31f8bbe53fdc7c1a83 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! .. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png diff --git a/mrp_2_steps_consumed_qty_sync/static/description/icon.png b/mrp_2_steps_consumed_qty_sync/static/description/icon.png new file mode 100644 index 000000000..3a0328b51 Binary files /dev/null and b/mrp_2_steps_consumed_qty_sync/static/description/icon.png differ diff --git a/mrp_2_steps_consumed_qty_sync/static/description/index.html b/mrp_2_steps_consumed_qty_sync/static/description/index.html index e823df1bb..a68b00242 100644 --- a/mrp_2_steps_consumed_qty_sync/static/description/index.html +++ b/mrp_2_steps_consumed_qty_sync/static/description/index.html @@ -8,10 +8,11 @@ /* :Author: David Goodger (goodger@python.org) -:Id: $Id: html4css1.css 8954 2022-01-20 10:10:25Z milde $ +:Id: $Id: html4css1.css 9511 2024-01-13 09:50:07Z milde $ :Copyright: This stylesheet has been placed in the public domain. Default cascading style sheet for the HTML output of Docutils. +Despite the name, some widely supported CSS2 features are used. See https://docutils.sourceforge.io/docs/howto/html-stylesheets.html for how to customize this style sheet. @@ -274,7 +275,7 @@ pre.literal-block, pre.doctest-block, pre.math, pre.code { margin-left: 2em ; margin-right: 2em } -pre.code .ln { color: grey; } /* line numbers */ +pre.code .ln { color: gray; } /* line numbers */ pre.code, code { background-color: #eeeeee } pre.code .comment, code .comment { color: #5C6576 } pre.code .keyword, code .keyword { color: #3B0D06; font-weight: bold } @@ -300,7 +301,7 @@ span.option { span.pre { white-space: pre } -span.problematic { +span.problematic, pre.problematic { color: red } span.section-subtitle { @@ -366,7 +367,7 @@ ul.auto-toc { !! This file is generated by oca-gen-addon-readme !! !! changes will be overwritten. !! !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -!! source digest: sha256:bf57d7cafed692fe20d0710b88e16940f6dd8eeda49c9490253d6468ede6ded8 +!! source digest: sha256:ad1dbe1cc8310ec57f18ff37d70e9793783ce52ace8d4a31f8bbe53fdc7c1a83 !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

Beta License: AGPL-3 OCA/manufacture Translate me on Weblate Try me on Runboat

This module allows to update the quantities consumed from a production order components @@ -412,7 +413,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +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.

diff --git a/setup/_metapackage/VERSION.txt b/setup/_metapackage/VERSION.txt index 36e8b8904..73d72b300 100644 --- a/setup/_metapackage/VERSION.txt +++ b/setup/_metapackage/VERSION.txt @@ -1 +1 @@ -15.0.20240808.0 \ No newline at end of file +15.0.20240920.0 \ No newline at end of file diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py index 4de6f57f4..49d6def38 100644 --- a/setup/_metapackage/setup.py +++ b/setup/_metapackage/setup.py @@ -9,6 +9,7 @@ setuptools.setup( version=version, install_requires=[ 'odoo-addon-account_move_line_mrp_info>=15.0dev,<15.1dev', + 'odoo-addon-mrp_2_steps_consumed_qty_sync>=15.0dev,<15.1dev', 'odoo-addon-mrp_account_analytic>=15.0dev,<15.1dev', 'odoo-addon-mrp_account_bom_attribute_match>=15.0dev,<15.1dev', 'odoo-addon-mrp_bom_attribute_match>=15.0dev,<15.1dev',