Skip to content

Commit ff03bfc

Browse files
committed
[MIG] project_tag_security: Migration to 18.0
TT55551
1 parent 8caec6a commit ff03bfc

File tree

6 files changed

+27
-33
lines changed

6 files changed

+27
-33
lines changed

project_tag_security/__manifest__.py

+1-3
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
33
{
44
"name": "Project Tag Security",
5-
"version": "16.0.1.0.0",
5+
"version": "18.0.1.0.0",
66
"category": "Project Management",
77
"website": "https://github.com/OCA/project",
88
"author": "Tecnativa, Odoo Community Association (OCA)",
@@ -11,9 +11,7 @@
1111
"installable": True,
1212
"auto_install": True,
1313
"data": [
14-
"views/project_project_views.xml",
1514
"views/project_tags_views.xml",
16-
"views/project_task_views.xml",
1715
],
1816
"maintainers": ["victoralmau"],
1917
}
+2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
11
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
22

3+
from . import project_project
34
from . import project_tags
5+
from . import project_task
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copyright 2025 Tecnativa - Víctor Martínez
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
3+
from odoo import fields, models
4+
5+
6+
class Projectproject(models.Model):
7+
_inherit = "project.project"
8+
9+
tag_ids = fields.Many2many(
10+
domain="""['|', ('allowed_project_ids', 'in', [id]),
11+
('allowed_project_ids', '=', False)]"""
12+
)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
# Copyright 2025 Tecnativa - Víctor Martínez
2+
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl)
3+
from odoo import fields, models
4+
5+
6+
class ProjectTask(models.Model):
7+
_inherit = "project.task"
8+
9+
tag_ids = fields.Many2many(
10+
domain="""['|', ('allowed_project_ids', 'in', [project_id]),
11+
('allowed_project_ids', '=', False)]"""
12+
)

project_tag_security/views/project_project_views.xml

-15
This file was deleted.

project_tag_security/views/project_task_views.xml

-15
This file was deleted.

0 commit comments

Comments
 (0)