# 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 AccountAccountTag(models.Model): _inherit = "account.account.tag" account_ids = fields.Many2many( comodel_name="account.account", relation="account_account_account_tag", string="Accounts", )