From 49dff3f25a396727a127c9517f3cbfe3c3b55422 Mon Sep 17 00:00:00 2001 From: Borruso Date: Wed, 27 Nov 2024 11:28:02 +0100 Subject: [PATCH] [MIG] project_task_default_stage: Migration to 18.0 --- project_task_default_stage/README.rst | 10 +++++----- project_task_default_stage/__manifest__.py | 2 +- project_task_default_stage/models/project.py | 4 ++-- .../static/description/index.html | 17 ++++++++++------- .../tests/test_project_task_default_stage.py | 7 ++----- .../views/project_view.xml | 19 +++++++++++++------ 6 files changed, 33 insertions(+), 26 deletions(-) diff --git a/project_task_default_stage/README.rst b/project_task_default_stage/README.rst index 7603761870..2994471ee7 100644 --- a/project_task_default_stage/README.rst +++ b/project_task_default_stage/README.rst @@ -17,13 +17,13 @@ Project Task Default Stage :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html :alt: License: AGPL-3 .. |badge3| image:: https://img.shields.io/badge/github-OCA%2Fproject-lightgray.png?logo=github - :target: https://github.com/OCA/project/tree/17.0/project_task_default_stage + :target: https://github.com/OCA/project/tree/18.0/project_task_default_stage :alt: OCA/project .. |badge4| image:: https://img.shields.io/badge/weblate-Translate%20me-F47D42.png - :target: https://translation.odoo-community.org/projects/project-17-0/project-17-0-project_task_default_stage + :target: https://translation.odoo-community.org/projects/project-18-0/project-18-0-project_task_default_stage :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/project&target_branch=17.0 + :target: https://runboat.odoo-community.org/builds?repo=OCA/project&target_branch=18.0 :alt: Try me on Runboat |badge1| |badge2| |badge3| |badge4| |badge5| @@ -49,7 +49,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. @@ -85,6 +85,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/project `_ project on GitHub. +This module is part of the `OCA/project `_ project on GitHub. You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute. diff --git a/project_task_default_stage/__manifest__.py b/project_task_default_stage/__manifest__.py index ddcfc9b69d..06c840ac0f 100644 --- a/project_task_default_stage/__manifest__.py +++ b/project_task_default_stage/__manifest__.py @@ -5,7 +5,7 @@ { "name": "Project Task Default Stage", "summary": "Recovery default task stages for projects from v8", - "version": "17.0.1.0.0", + "version": "18.0.1.0.0", "category": "Project", "author": "Tecnativa, Odoo Community Association (OCA)", "website": "https://github.com/OCA/project", diff --git a/project_task_default_stage/models/project.py b/project_task_default_stage/models/project.py index 63f1c382bf..51a72e9477 100644 --- a/project_task_default_stage/models/project.py +++ b/project_task_default_stage/models/project.py @@ -8,7 +8,7 @@ class ProjectProject(models.Model): _inherit = "project.project" def _get_default_type_common(self): - ids = self.env["project.task.type"].search([("case_default", "=", True)]) - return ids + task_types = self.env["project.task.type"].search([("case_default", "=", True)]) + return task_types type_ids = fields.Many2many(default=lambda self: self._get_default_type_common()) diff --git a/project_task_default_stage/static/description/index.html b/project_task_default_stage/static/description/index.html index 4c8d11b532..14890f0802 100644 --- a/project_task_default_stage/static/description/index.html +++ b/project_task_default_stage/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 @@

Project Task Default Stage

!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! !! source digest: sha256:c4645e4727419ef8372d4e37587b07ad9f05e131b5ce6bfae1d0db3857d375dd !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! --> -

Beta License: AGPL-3 OCA/project Translate me on Weblate Try me on Runboat

+

Beta License: AGPL-3 OCA/project Translate me on Weblate Try me on Runboat

This module restores the case_default fields to Project Tasks and project stage tab, removed in Odoo 9.0 and later.

Table of contents

@@ -395,7 +396,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.

@@ -422,11 +423,13 @@

Contributors

Maintainers

This module is maintained by the OCA.

-Odoo Community Association + +Odoo Community Association +

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/project project on GitHub.

+

This module is part of the OCA/project project on GitHub.

You are welcome to contribute. To learn how please visit https://odoo-community.org/page/Contribute.

diff --git a/project_task_default_stage/tests/test_project_task_default_stage.py b/project_task_default_stage/tests/test_project_task_default_stage.py index 6769bede13..cddee3ceb8 100644 --- a/project_task_default_stage/tests/test_project_task_default_stage.py +++ b/project_task_default_stage/tests/test_project_task_default_stage.py @@ -1,17 +1,14 @@ # Copyright 2015 Incaser Informatica S.L. - Sergio Teruel # Copyright 2015 Incaser Informatica S.L. - Carlos Dauden # License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl). -from odoo.tests.common import TransactionCase +from odoo.addons.base.tests.common import BaseCommon -from odoo.addons.base.tests.common import DISABLED_MAIL_CONTEXT - -class TestProjectCaseDefault(TransactionCase): +class TestProjectCaseDefault(BaseCommon): # Use case : Prepare some data for current test case @classmethod def setUpClass(cls): super().setUpClass() - cls.env = cls.env(context=dict(cls.env.context, **DISABLED_MAIL_CONTEXT)) cls.project = cls.env["project.project"].create({"name": "Project Test"}) def test_project_new(self): diff --git a/project_task_default_stage/views/project_view.xml b/project_task_default_stage/views/project_view.xml index 8b3637ea03..8e6c697d3a 100644 --- a/project_task_default_stage/views/project_view.xml +++ b/project_task_default_stage/views/project_view.xml @@ -11,7 +11,7 @@ - project.task.type.tree.inherit + project.task.type.list.inherit project.task.type @@ -28,15 +28,22 @@ - + - - - - + + +