blob: 4c0062fdb6f603b775d0be4f5c63389c3a6aa693 (
plain)
1
2
3
4
5
6
7
8
|
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import models, fields
class AccountMoveLine(models.Model):
_inherit = "account.move.line"
l10n_pe_group_id = fields.Many2one("account.group", related="account_id.group_id", store=True)
|