mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-19 06:52:09 +02:00
14 lines
306 B
Python
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",
|
|
)
|