diff --git a/README.md b/README.md
index ffa95a99d..21cefac8a 100644
--- a/README.md
+++ b/README.md
@@ -41,6 +41,7 @@ addon | version | maintainers | summary
[mrp_production_grouped_by_product](mrp_production_grouped_by_product/) | 15.0.1.0.1 | | Production Grouped By Product
[mrp_production_note](mrp_production_note/) | 15.0.1.0.0 | | Notes in production orders
[mrp_production_operation_injection](mrp_production_operation_injection/) | 15.0.1.0.0 | [](https://github.com/grindtildeath) | Adds an existing operation from the Bill of Material
+[mrp_production_picking_type_from_route](mrp_production_picking_type_from_route/) | 15.0.1.0.0 | | Updates the operation type creating MO based on the product
[mrp_production_putaway_strategy](mrp_production_putaway_strategy/) | 15.0.1.0.0 | | Applies putaway strategies to manufacturing orders for finished products.
[mrp_production_quant_manual_assign](mrp_production_quant_manual_assign/) | 15.0.1.0.0 | | Production - Manual Quant Assignment
[mrp_production_serial_matrix](mrp_production_serial_matrix/) | 15.0.0.1.0 | | MRP Production Serial Matrix
diff --git a/mrp_production_picking_type_from_route/README.rst b/mrp_production_picking_type_from_route/README.rst
index d984fc263..c4126d38e 100644
--- a/mrp_production_picking_type_from_route/README.rst
+++ b/mrp_production_picking_type_from_route/README.rst
@@ -7,7 +7,7 @@ MRP Production Picking Type From Route
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:f1383a1e86a8864d407c8883419866e78ff9c2088c09c18356946909eb612b71
+ !! source digest: sha256:e2681afe5c04cff6871cca46d95839b62d11bab67dd6aaefd3dfbba150f12a4e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/mrp_production_picking_type_from_route/static/description/index.html b/mrp_production_picking_type_from_route/static/description/index.html
index 465597c78..20378de5c 100644
--- a/mrp_production_picking_type_from_route/static/description/index.html
+++ b/mrp_production_picking_type_from_route/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:f1383a1e86a8864d407c8883419866e78ff9c2088c09c18356946909eb612b71
+!! source digest: sha256:e2681afe5c04cff6871cca46d95839b62d11bab67dd6aaefd3dfbba150f12a4e
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
This module add an onchange that updates the operation type based on the
@@ -419,7 +420,9 @@ If you spotted it first, help us to smash it by providing a detailed and welcome
This module is maintained by the OCA.
-

+
+
+
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 5c9619fd3..36e8b8904 100644
--- a/setup/_metapackage/VERSION.txt
+++ b/setup/_metapackage/VERSION.txt
@@ -1 +1 @@
-15.0.20240806.0
\ No newline at end of file
+15.0.20240808.0
\ No newline at end of file
diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py
index 4d64ad5b8..4de6f57f4 100644
--- a/setup/_metapackage/setup.py
+++ b/setup/_metapackage/setup.py
@@ -28,6 +28,7 @@ setuptools.setup(
'odoo-addon-mrp_production_grouped_by_product>=15.0dev,<15.1dev',
'odoo-addon-mrp_production_note>=15.0dev,<15.1dev',
'odoo-addon-mrp_production_operation_injection>=15.0dev,<15.1dev',
+ 'odoo-addon-mrp_production_picking_type_from_route>=15.0dev,<15.1dev',
'odoo-addon-mrp_production_putaway_strategy>=15.0dev,<15.1dev',
'odoo-addon-mrp_production_quant_manual_assign>=15.0dev,<15.1dev',
'odoo-addon-mrp_production_serial_matrix>=15.0dev,<15.1dev',