bemade-addons/project_task_template/models/project_task.py

14 lines
312 B
Python
Raw Permalink Normal View History

2025-02-26 10:12:33 -05:00
from odoo import models, fields
class ProjectTask(models.Model):
_inherit = 'project.task'
template_id = fields.Many2one(
comodel_name='project.task.template',
string='Task Template',
help='Template this task was created from',
readonly=True,
index=True,
)