mirror of
https://github.com/bringout/oca-technical.git
synced 2026-04-20 02:32:07 +02:00
12 lines
380 B
Python
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"
|
|
)
|