diff --git a/crm_project/README.rst b/crm_project/README.rst
index cad5f671cd5..850d348b4e8 100644
--- a/crm_project/README.rst
+++ b/crm_project/README.rst
@@ -14,13 +14,13 @@ Lead to Task
: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/14.0/crm_project
+ :target: https://github.com/OCA/crm/tree/15.0/crm_project
:alt: OCA/crm
.. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png
- :target: https://translation.odoo-community.org/projects/crm-14-0/crm-14-0-crm_project
+ :target: https://translation.odoo-community.org/projects/crm-15-0/crm-15-0-crm_project
:alt: Translate me on Weblate
.. |badge5| image:: https://img.shields.io/badge/runbot-Try%20me-875A7B.png
- :target: https://runbot.odoo-community.org/runbot/111/14.0
+ :target: https://runbot.odoo-community.org/runbot/111/15.0
:alt: Try me on Runbot
|badge1| |badge2| |badge3| |badge4| |badge5|
@@ -59,7 +59,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 smashing it by providing a detailed and welcomed
-`feedback `_.
+`feedback `_.
Do not contact contributors directly about support or help with technical issues.
@@ -78,6 +78,7 @@ Contributors
* `Tecnativa `__:
* Pedro M. Baeza
+* Ruchir Shukla
Maintainers
~~~~~~~~~~~
@@ -92,6 +93,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_project/__manifest__.py b/crm_project/__manifest__.py
index 6b1170ccbac..57874aa859e 100644
--- a/crm_project/__manifest__.py
+++ b/crm_project/__manifest__.py
@@ -10,7 +10,7 @@
"author": "Odoo S.A., Odoo Community Association (OCA), Tecnativa",
"website": "https://github.com/OCA/crm",
"depends": ["crm", "project"],
- "version": "14.0.1.0.0",
+ "version": "15.0.1.0.1",
"license": "LGPL-3",
"installable": True,
"data": [
diff --git a/crm_project/i18n/crm_project.pot b/crm_project/i18n/crm_project.pot
index a12413a3223..50cdbb00778 100644
--- a/crm_project/i18n/crm_project.pot
+++ b/crm_project/i18n/crm_project.pot
@@ -4,7 +4,7 @@
#
msgid ""
msgstr ""
-"Project-Id-Version: Odoo Server 14.0\n"
+"Project-Id-Version: Odoo Server 15.0\n"
"Report-Msgid-Bugs-To: \n"
"Last-Translator: \n"
"Language-Team: \n"
diff --git a/crm_project/readme/CONTRIBUTORS.rst b/crm_project/readme/CONTRIBUTORS.rst
index 2b13251bef4..a12eaef8831 100644
--- a/crm_project/readme/CONTRIBUTORS.rst
+++ b/crm_project/readme/CONTRIBUTORS.rst
@@ -1,3 +1,4 @@
* `Tecnativa `__:
* Pedro M. Baeza
+* Ruchir Shukla
diff --git a/crm_project/static/description/index.html b/crm_project/static/description/index.html
index bf8c74fd091..61ca3139e0d 100644
--- a/crm_project/static/description/index.html
+++ b/crm_project/static/description/index.html
@@ -367,7 +367,7 @@ Lead to Task
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->
-
+
This module allows to convert leads/opportunities to tasks.
DISCLAIMER: This module is a forward-port of a module from Odoo S.A. and as
such, it is not included in the OCA CLA. That means we do not have a copy of the
@@ -410,7 +410,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 smashing it by providing a detailed and welcomed
-feedback.
+feedback.
Do not contact contributors directly about support or help with technical issues.
@@ -438,7 +439,7 @@
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_project/tests/test_crm_project.py b/crm_project/tests/test_crm_project.py
index efb93c8267c..1cef06b9285 100644
--- a/crm_project/tests/test_crm_project.py
+++ b/crm_project/tests/test_crm_project.py
@@ -4,7 +4,7 @@
from odoo.tests import common
-class TestCrmProject(common.SavepointCase):
+class TestCrmProject(common.TransactionCase):
@classmethod
def setUpClass(cls):
super().setUpClass()
diff --git a/crm_project/wizard/crm_lead_convert2task.py b/crm_project/wizard/crm_lead_convert2task.py
index ad19486abcb..1b31400e558 100644
--- a/crm_project/wizard/crm_lead_convert2task.py
+++ b/crm_project/wizard/crm_lead_convert2task.py
@@ -29,7 +29,7 @@ def action_lead_to_project_task(self):
lead = self.lead_id
partner = lead._find_matching_partner()
if not partner and (lead.partner_name or lead.contact_name):
- lead.handle_partner_assignment()
+ lead._handle_partner_assignment()
partner = lead.partner_id
# create new project.task
vals = {
@@ -38,7 +38,6 @@ def action_lead_to_project_task(self):
"email_from": lead.email_from,
"project_id": self.project_id.id,
"partner_id": partner.id,
- "user_id": None,
}
task = self.env["project.task"].create(vals)
# move the mail thread