oca-technical/odoo-bringout-oca-management-system-mgmtsystem_action_hazard/mgmtsystem_action_hazard/models/mgmtsystem_hazard.py
2025-08-29 15:43:03 +02:00

14 lines
306 B
Python

# Copyright 2025 Dixmit
# License AGPL-3.0 or later (https://www.gnu.org/licenses/agpl).
from odoo import fields, models
class MgmtsystemHazard(models.Model):
_inherit = "mgmtsystem.hazard"
mgmtsystem_action_ids = fields.Many2many(
"mgmtsystem.action",
string="Actions",
)