diff --git a/helpdesk_motive/README.rst b/helpdesk_motive/README.rst index 4ffdb2dafe..a2738dea92 100644 --- a/helpdesk_motive/README.rst +++ b/helpdesk_motive/README.rst @@ -88,6 +88,10 @@ Contributors - Adasat Torres +- \`Camptocamp \_\`: + + - Italo Lopes + Maintainers ----------- diff --git a/helpdesk_motive/__manifest__.py b/helpdesk_motive/__manifest__.py index e7de9aab71..dcb878d90e 100644 --- a/helpdesk_motive/__manifest__.py +++ b/helpdesk_motive/__manifest__.py @@ -8,7 +8,8 @@ "version": "17.0.1.0.0", "license": "AGPL-3", "summary": "Keep the motive ", - "author": "Binhex, Konos, Open Source Integrators, Odoo Community Association (OCA)", + "author": "Binhex, Konos, Open Source Integrators, " + "Odoo Community Association (OCA)", "website": "https://github.com/OCA/helpdesk", "depends": ["helpdesk_mgmt"], "data": [ diff --git a/helpdesk_motive/demo/helpdesk_motive_demo.xml b/helpdesk_motive/demo/helpdesk_motive_demo.xml index 6acf32bf14..85f740d9ba 100644 --- a/helpdesk_motive/demo/helpdesk_motive_demo.xml +++ b/helpdesk_motive/demo/helpdesk_motive_demo.xml @@ -3,11 +3,11 @@ Client requirement - + Update required - + diff --git a/helpdesk_motive/readme/CONTRIBUTORS.md b/helpdesk_motive/readme/CONTRIBUTORS.md index 6ec409ae2d..a637c95b31 100644 --- a/helpdesk_motive/readme/CONTRIBUTORS.md +++ b/helpdesk_motive/readme/CONTRIBUTORS.md @@ -6,3 +6,5 @@ - David Alonso \<\> - \`Binhex \<\>\_\`: - Adasat Torres \<\> +- \`Camptocamp \<\>\_\`: + - Italo Lopes \<\> diff --git a/helpdesk_motive/static/description/index.html b/helpdesk_motive/static/description/index.html index 0b3bcfabbb..d365245311 100644 --- a/helpdesk_motive/static/description/index.html +++ b/helpdesk_motive/static/description/index.html @@ -437,6 +437,10 @@

Contributors

  • Adasat Torres <a.torres@binhex.cloud>
  • +
  • `Camptocamp <https://camptocamp.com>_`: +
  • diff --git a/helpdesk_motive/tests/test_helpdesk_motive.py b/helpdesk_motive/tests/test_helpdesk_motive.py index 3b46ee22b9..1c354b3dd5 100644 --- a/helpdesk_motive/tests/test_helpdesk_motive.py +++ b/helpdesk_motive/tests/test_helpdesk_motive.py @@ -46,8 +46,7 @@ def setUpClass(cls): def _create_ticket(self, team, motive, user=False): return self.env["helpdesk.ticket"].create( { - "name": "Ticket %s (%s)" - % (team.name, user.login if user else "unassigned"), + "name": f"Ticket {team.name} {user.login if user else 'unassigned'}", "description": "Description", "team_id": team.id, "user_id": user.id if user else False,