mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-21 00:52:01 +02:00
23 lines
869 B
Python
23 lines
869 B
Python
# Copyright (C) 2010 Savoir-faire Linux (<http://www.savoirfairelinux.com>).
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MgmtsystemReviewLine(models.Model):
|
|
_name = "mgmtsystem.review.line"
|
|
_description = "Review Line"
|
|
|
|
name = fields.Char("Title", size=300, required=True)
|
|
type = fields.Selection([("action", "Action"), ("nonconformity", "Nonconformity")])
|
|
action_id = fields.Many2one("mgmtsystem.action", "Action", index=True)
|
|
nonconformity_id = fields.Many2one(
|
|
"mgmtsystem.nonconformity", "Nonconformity", index=True
|
|
)
|
|
decision = fields.Text()
|
|
review_id = fields.Many2one(
|
|
"mgmtsystem.review", "Review", ondelete="cascade", index=True
|
|
)
|
|
company_id = fields.Many2one(
|
|
"res.company", "Company", default=lambda self: self.env.company
|
|
)
|