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

12 lines
380 B
Python

# Copyright (C) 2020 Guadaltech Soluciones Tecnológicas (<http://www.guadaltech.es>).
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = "res.company"
risk_computation_id = fields.Many2one(
"mgmtsystem.hazard.risk.computation", string="Risk Computation"
)