# Copyright 2019-2022 Le Filament (<https://le-filament.com>)
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).

from odoo import fields, models


class ResConfigSettings(models.TransientModel):
    _inherit = "res.config.settings"

    taux_horaire = fields.Integer(
        "Taux horaire (€/h)", related="company_id.taux_horaire", readonly=False
    )