diff --git a/README.md b/README.md
index 1f40f643bd..17091ae3fb 100644
--- a/README.md
+++ b/README.md
@@ -60,6 +60,7 @@ addon | version | maintainers | summary
[pos_payment_restriction](pos_payment_restriction/) | 16.0.1.0.0 | [![rousseldenis](https://github.com/rousseldenis.png?size=30px)](https://github.com/rousseldenis) | Adds restrictions options on POS payment level
[pos_payment_terminal](pos_payment_terminal/) | 16.0.1.0.2 | | Point of sale: support generic payment terminal
[pos_picking_delayed](pos_picking_delayed/) | 16.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Delay the creation of the picking when PoS order is created
+[pos_price_to_weight](pos_price_to_weight/) | 16.0.1.0.0 | | Compute weight based on barcodes with prices
[pos_pricelist_technical](pos_pricelist_technical/) | 16.0.1.0.0 | [![legalsylvain](https://github.com/legalsylvain.png?size=30px)](https://github.com/legalsylvain) | Prevent technical pricelists from being displayed in the Point of Sale front-end UI
[pos_product_display_default_code](pos_product_display_default_code/) | 16.0.1.0.0 | | pos: display product default code before product name
[pos_product_label](pos_product_label/) | 16.0.1.0.2 | [![ivantodorovich](https://github.com/ivantodorovich.png?size=30px)](https://github.com/ivantodorovich) | Print product labels from the POS
diff --git a/pos_price_to_weight/README.rst b/pos_price_to_weight/README.rst
index 453383dbb7..1e1d6618b0 100644
--- a/pos_price_to_weight/README.rst
+++ b/pos_price_to_weight/README.rst
@@ -7,7 +7,7 @@ Point of Sale - Price to Weight
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:b0443f725649e14ed47bb43b7e7815d98a6f850cf45bffdd6f66b8eee3ac1b76
+ !! source digest: sha256:560fba5744d4ecfa61a34ce39fd3a7467f7f6296c1b76f2c3153127150a0f4e0
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/pos_price_to_weight/static/description/index.html b/pos_price_to_weight/static/description/index.html
index fd91d33201..37d4ca8937 100644
--- a/pos_price_to_weight/static/description/index.html
+++ b/pos_price_to_weight/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 @@
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.pre {
white-space: pre }
-span.problematic {
+span.problematic, pre.problematic {
color: red }
span.section-subtitle {
@@ -366,7 +367,7 @@
This module extends Odoo Point Of Sale features, to allow to scan barcode
@@ -486,7 +487,9 @@
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 87a86e39df..8e6f1384ac 100644
--- a/setup/_metapackage/VERSION.txt
+++ b/setup/_metapackage/VERSION.txt
@@ -1 +1 @@
-16.0.20241009.0
\ No newline at end of file
+16.0.20241103.0
\ No newline at end of file
diff --git a/setup/_metapackage/setup.py b/setup/_metapackage/setup.py
index 77b4fdfb52..b4e78d5433 100644
--- a/setup/_metapackage/setup.py
+++ b/setup/_metapackage/setup.py
@@ -47,6 +47,7 @@
'odoo-addon-pos_payment_restriction>=16.0dev,<16.1dev',
'odoo-addon-pos_payment_terminal>=16.0dev,<16.1dev',
'odoo-addon-pos_picking_delayed>=16.0dev,<16.1dev',
+ 'odoo-addon-pos_price_to_weight>=16.0dev,<16.1dev',
'odoo-addon-pos_pricelist_technical>=16.0dev,<16.1dev',
'odoo-addon-pos_product_display_default_code>=16.0dev,<16.1dev',
'odoo-addon-pos_product_label>=16.0dev,<16.1dev',