13 lines
317 B

# Copyright 2019 Camptocamp SA
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
from odoo import models, fields
class AccountInvoice(models.Model):
_inherit = 'account.invoice'
company_group_id = fields.Many2one(
related='partner_id.company_group_id',
store=True
)