Skip to content

Commit

Permalink
fields.Html, Deletion /tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Medeeet committed Oct 23, 2024
1 parent 3158b37 commit 907f46d
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 14 deletions.
4 changes: 2 additions & 2 deletions project_task_subtask/models/project_task_subtask.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ class Task(models.Model):
_inherit = "project.task"

subtask_ids = fields.One2many("project.task.subtask", "task_id", "Subtask")
kanban_subtasks = fields.Text(compute="_compute_kanban_subtasks")
kanban_subtasks = fields.Html(compute="_compute_kanban_subtasks")
default_user = fields.Many2one("res.users", compute="_compute_default_user")
completion = fields.Integer(compute="_compute_completion")
completion_xml = fields.Text(compute="_compute_completion_xml")
completion_xml = fields.Html(compute="_compute_completion_xml")

def _compute_default_user(self):
for record in self:
Expand Down
3 changes: 0 additions & 3 deletions project_task_subtask/tests/__init__.py

This file was deleted.

9 changes: 0 additions & 9 deletions project_task_subtask/tests/test_subtask_sort_button.py

This file was deleted.

0 comments on commit 907f46d

Please sign in to comment.