oca-technical/odoo-bringout-oca-management-system-mgmtsystem_action_hazard/mgmtsystem_action_hazard/models/mgmtsystem_action.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 MgmtsystemAction(models.Model):
_inherit = "mgmtsystem.action"
mgmtsystem_hazard_ids = fields.Many2many(
"mgmtsystem.hazard",
string="Hazards",
)