mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-18 14:52:06 +02:00
Initial commit: OCA Workflow Process packages (456 packages)
This commit is contained in:
commit
d366e42934
18799 changed files with 1284507 additions and 0 deletions
|
|
@ -0,0 +1,11 @@
|
|||
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
|
||||
)
|
||||
Loading…
Add table
Add a link
Reference in a new issue