mirror of
https://github.com/OCA/account-financial-tools.git
synced 2025-02-02 12:47:26 +02:00
14 lines
353 B
Python
14 lines
353 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(
|
|
'account.account', 'group_id',
|
|
string='Accounts',
|
|
help="Assigned accounts.")
|