mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-18 16:32:08 +02:00
11 lines
288 B
Python
11 lines
288 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ProjectVersion(models.Model):
|
|
_name = "project.version"
|
|
_description = "Project Version"
|
|
|
|
name = fields.Char(required=True)
|
|
project_id = fields.Many2one(
|
|
string="Project", comodel_name="project.project", required=True
|
|
)
|