mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-18 15:32:06 +02:00
12 lines
420 B
Python
12 lines
420 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 MgmtsystemNonconformity(models.Model):
|
|
"""Class use to add audit_ids association to MgmtsystemNonconformity."""
|
|
|
|
_inherit = "mgmtsystem.nonconformity"
|
|
|
|
audit_ids = fields.Many2many("mgmtsystem.audit", string="Related Audits")
|