15 lines
358 B
Python
15 lines
358 B
Python
# Copyright 2018 FOREST AND BIOMASS ROMANIA SA
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl.html).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountGroup(models.Model):
|
|
_inherit = "account.group"
|
|
|
|
account_ids = fields.One2many(
|
|
comodel_name="account.account",
|
|
inverse_name="group_id",
|
|
string="Accounts",
|
|
)
|