# Copyright 2018 ACSONE SA/NV () # 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" sale_default_invoice_policy = fields.Selection( related="company_id.sale_default_invoice_policy", readonly=False, )