diff --git a/crm_lead_product/README.rst b/crm_lead_product/README.rst
index 9abb7dea377..7af8338e627 100644
--- a/crm_lead_product/README.rst
+++ b/crm_lead_product/README.rst
@@ -17,13 +17,13 @@ CRM Lead Product
:target: http://www.gnu.org/licenses/lgpl-3.0-standalone.html
:alt: License: LGPL-3
.. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fcrm-lightgray.png?logo=github
- :target: https://github.com/OCA/crm/tree/17.0/crm_lead_product
+ :target: https://github.com/OCA/crm/tree/18.0/crm_lead_product
:alt: OCA/crm
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/crm-17-0/crm-17-0-crm_lead_product
+ :target: https://translation.odoo-community.org/projects/crm-18-0/crm-18-0-crm_lead_product
: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/crm&target_branch=17.0
+ :target: https://runboat.odoo-community.org/builds?repo=OCA/crm&target_branch=18.0
:alt: Try me on Runboat
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -72,7 +72,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 to smash it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -89,6 +89,7 @@ Contributors
- Adria Gil Sorribes
- Guillem Casassas
+- Frederic Grall
Maintainers
-----------
@@ -103,6 +104,6 @@ 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.
-This module is part of the `OCA/crm `_ project on GitHub.
+This module is part of the `OCA/crm `_ project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/crm_lead_product/readme/CONTRIBUTORS.md b/crm_lead_product/readme/CONTRIBUTORS.md
index c68f1bd9507..6c53a883b7f 100644
--- a/crm_lead_product/readme/CONTRIBUTORS.md
+++ b/crm_lead_product/readme/CONTRIBUTORS.md
@@ -1,2 +1,3 @@
- Adria Gil Sorribes \<\>
- Guillem Casassas \<\>
+- Frederic Grall \<>
\ No newline at end of file
diff --git a/crm_lead_product/report/crm_product_report.py b/crm_lead_product/report/crm_product_report.py
index 12ae81e68fd..d883e51e754 100644
--- a/crm_lead_product/report/crm_product_report.py
+++ b/crm_lead_product/report/crm_product_report.py
@@ -26,7 +26,7 @@ class ActivityReport(models.Model):
name = fields.Char("Lead Name", readonly=True)
partner_id = fields.Many2one("res.partner", "Partner/Customer", readonly=True)
partner_name = fields.Char("Contact Name", readonly=True)
- probability = fields.Float(group_operator="avg", readonly=True)
+ probability = fields.Float(aggregator="avg", readonly=True)
stage_id = fields.Many2one("crm.stage", "Stage", readonly=True)
team_id = fields.Many2one("crm.team", "Sales Team", readonly=True)
type = fields.Selection(
diff --git a/crm_lead_product/static/description/index.html b/crm_lead_product/static/description/index.html
index 083001e979e..4643d5f8b4d 100644
--- a/crm_lead_product/static/description/index.html
+++ b/crm_lead_product/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 {
@@ -368,7 +369,7 @@ CRM Lead Product
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! source digest: sha256:24d4c1f6fa68ecc15510e005185543af4dbe7b792fba9c8355579601dfce32a6
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-
+
This module allows the user to link multiple products, product
categories or product templates to a lead or an opportunity in order to
be able to do a product demand forecasting taking into account the leads
@@ -418,7 +419,7 @@
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.
+feedback.
Do not contact contributors directly about support or help with technical issues.
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.
-
This module is part of the OCA/crm project on GitHub.
+
This module is part of the OCA/crm project on GitHub.
You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.
diff --git a/crm_lead_product/tests/test_crm_lead_line.py b/crm_lead_product/tests/test_crm_lead_line.py
index ea4be75a7c4..35f2d65f3a6 100644
--- a/crm_lead_product/tests/test_crm_lead_line.py
+++ b/crm_lead_product/tests/test_crm_lead_line.py
@@ -46,7 +46,6 @@ def setUp(self):
def test_01_lead_lines(self):
"""Tests for Crm Lead Line"""
-
# Create new lead line with product id
self.lead_line_1 = self.lead_line_obj.create(
{