You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
234 B

  1. from odoo import models, fields, _
  2. class Task(models.Model):
  3. _inherit = "project.task"
  4. user_id = fields.Many2one(string=_("Owner"))
  5. assignee_ids = fields.Many2many('res.users', 'assignee_ids_rel', string='Assignees')