diff --git a/README.md b/README.md
index 15db4e1334c..5bfaac425b8 100644
--- a/README.md
+++ b/README.md
@@ -50,9 +50,9 @@ addon | version | maintainers | summary
[partner_contact_age_range](partner_contact_age_range/) | 16.0.1.0.1 | | Age Range for Contact's
[partner_contact_birthdate](partner_contact_birthdate/) | 16.0.1.0.0 | | Contact's birthdate
[partner_contact_birthplace](partner_contact_birthplace/) | 16.0.1.0.0 | | This module allows to define a birthplace for partners.
-[partner_contact_department](partner_contact_department/) | 16.0.1.0.2 | | Assign contacts to departments
+[partner_contact_department](partner_contact_department/) | 16.0.1.1.0 | | Assign contacts to departments
[partner_contact_gender](partner_contact_gender/) | 16.0.1.0.0 | | Add gender field to contacts
-[partner_contact_job_position](partner_contact_job_position/) | 16.0.1.0.0 | | Categorize job positions for contacts
+[partner_contact_job_position](partner_contact_job_position/) | 16.0.1.1.0 | | Categorize job positions for contacts
[partner_contact_lang](partner_contact_lang/) | 16.0.1.0.0 | | Manage language in contacts
[partner_contact_nationality](partner_contact_nationality/) | 16.0.1.0.1 | | Add nationality field to contacts
[partner_contact_personal_information_page](partner_contact_personal_information_page/) | 16.0.1.0.1 | | Add a page to contacts form to put personal information
diff --git a/partner_contact_department/README.rst b/partner_contact_department/README.rst
index 7fd31702da5..25fb00226ad 100644
--- a/partner_contact_department/README.rst
+++ b/partner_contact_department/README.rst
@@ -7,7 +7,7 @@ Partner Contact Department
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:0870139b8aa2fa825ff9a3ec5119435417c131bc2e652417b33130d4d57f6fb8
+ !! source digest: sha256:ae60a558a37b7a443a92c8b65325e0db005f735316bf2695f8d4ec0c3f4470f7
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/partner_contact_department/__manifest__.py b/partner_contact_department/__manifest__.py
index cc7ab53db23..282a6e9d35d 100644
--- a/partner_contact_department/__manifest__.py
+++ b/partner_contact_department/__manifest__.py
@@ -6,7 +6,7 @@
{
"name": "Partner Contact Department",
"summary": "Assign contacts to departments",
- "version": "16.0.1.0.2",
+ "version": "16.0.1.1.0",
"category": "Customer Relationship Management",
"author": "Tecnativa, Odoo Community Association (OCA)",
"license": "AGPL-3",
diff --git a/partner_contact_department/static/description/index.html b/partner_contact_department/static/description/index.html
index c5576d5d176..2f46ce5e9a8 100644
--- a/partner_contact_department/static/description/index.html
+++ b/partner_contact_department/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 the functionality of the address book to support
@@ -439,7 +440,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/partner_contact_department/views/res_partner_view.xml b/partner_contact_department/views/res_partner_view.xml
index 5e67228c1bb..3e63ad7d6db 100644
--- a/partner_contact_department/views/res_partner_view.xml
+++ b/partner_contact_department/views/res_partner_view.xml
@@ -10,7 +10,7 @@
name="department_id"
placeholder="Department"
attrs="{'invisible': [('is_company','=', True)]}"
- options='{"no_open": True}'
+ options='{"no_open": True, "no_create": True}'
/>
diff --git a/partner_contact_job_position/README.rst b/partner_contact_job_position/README.rst
index ae63c2fbec9..67832bf38b5 100644
--- a/partner_contact_job_position/README.rst
+++ b/partner_contact_job_position/README.rst
@@ -7,7 +7,7 @@ Partner Job Position
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
- !! source digest: sha256:210842e57bdac7be565f8765de9aead26a56a047ba15e9de742d3fcb96aaf3c4
+ !! source digest: sha256:c91eee32ad2ba80b5d7c23e7aee31d65ab789b772e49aa5cefb70da87b61bdad
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
.. |badge1| image:: https://img.shields.io/badge/maturity-Beta-yellow.png
diff --git a/partner_contact_job_position/__manifest__.py b/partner_contact_job_position/__manifest__.py
index 4899faea3c4..e841886921b 100644
--- a/partner_contact_job_position/__manifest__.py
+++ b/partner_contact_job_position/__manifest__.py
@@ -7,7 +7,7 @@
{
"name": "Partner Job Position",
"summary": "Categorize job positions for contacts",
- "version": "16.0.1.0.0",
+ "version": "16.0.1.1.0",
"category": "Customer Relationship Management",
"website": "https://github.com/OCA/partner-contact",
"author": "Tecnativa, Odoo Community Association (OCA)",
diff --git a/partner_contact_job_position/static/description/index.html b/partner_contact_job_position/static/description/index.html
index a3e960cc88c..2a509310351 100644
--- a/partner_contact_job_position/static/description/index.html
+++ b/partner_contact_job_position/static/description/index.html
@@ -1,4 +1,3 @@
-
@@ -9,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.
@@ -275,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 }
@@ -301,7 +301,7 @@
span.pre {
white-space: pre }
-span.problematic {
+span.problematic, pre.problematic {
color: red }
span.section-subtitle {
@@ -367,7 +367,7 @@
Partner Job Position
!! This file is generated by oca-gen-addon-readme !!
!! changes will be overwritten. !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
-!! source digest: sha256:210842e57bdac7be565f8765de9aead26a56a047ba15e9de742d3fcb96aaf3c4
+!! source digest: sha256:c91eee32ad2ba80b5d7c23e7aee31d65ab789b772e49aa5cefb70da87b61bdad
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! -->

This module extends the functionality of partners job position to support
@@ -437,7 +437,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/partner_contact_job_position/views/res_partner_view.xml b/partner_contact_job_position/views/res_partner_view.xml
index 523e03e04d6..97c94c73987 100644
--- a/partner_contact_job_position/views/res_partner_view.xml
+++ b/partner_contact_job_position/views/res_partner_view.xml
@@ -9,7 +9,7 @@