Hi everyone,
I have a issue, example:
"""
class Materials(models.Model):
_name = 'materials.materials'
task_id = fields.Many2one('project.task')
class Task(models.Model):
_inherit = 'project.task'
materials_ids = One2many('materials.materials', 'task_id')
"""
At here, when I add a line Materials on Subtask(Form View), on Parent Task, this line is still available. (But it is still a record Materials)
Is there any solution for this case?
Thanks and Regards.