mirror of
https://github.com/bringout/oca-project.git
synced 2026-04-18 12:01:59 +02:00
🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
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,
|
|
)
|