mirror of
https://github.com/bringout/oca-workflow-process.git
synced 2026-04-19 07:12:01 +02:00
15 lines
381 B
Python
15 lines
381 B
Python
# Copyright 2019 Onestein
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class ProjectRiskResponse(models.Model):
|
|
_name = "project.risk.response"
|
|
_description = "Project Risks Responses"
|
|
|
|
project_risk_id = fields.Many2one(comodel_name="project.risk")
|
|
|
|
sequence = fields.Integer()
|
|
|
|
description = fields.Char()
|