mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-18 11:32:05 +02:00
11 lines
223 B
Python
11 lines
223 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ProjectTask(models.Model):
|
|
_inherit = "project.task"
|
|
|
|
version_id = fields.Many2one(
|
|
comodel_name="project.version",
|
|
string="Version",
|
|
copy=True,
|
|
)
|