mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 10:52:03 +02:00
15 lines
458 B
Python
15 lines
458 B
Python
# Copyright 2023 CreuBlanca
|
|
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class MgmtsystemEvaluationResult(models.Model):
|
|
_name = "mgmtsystem.evaluation.result"
|
|
_description = "Evaluation Result"
|
|
|
|
name = fields.Char()
|
|
template_ids = fields.Many2many("mgmtsystem.evaluation.template")
|
|
sequence = fields.Integer()
|
|
active = fields.Boolean(default=True)
|
|
passed = fields.Boolean()
|