Initial commit: Odoo 18.0-20251222 extra-addons
This commit is contained in:
14
account_usability/models/account_tax_group.py
Executable file
14
account_usability/models/account_tax_group.py
Executable file
@@ -0,0 +1,14 @@
|
||||
# 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 AccountTaxGroup(models.Model):
|
||||
_inherit = "account.tax.group"
|
||||
|
||||
tax_ids = fields.One2many(
|
||||
comodel_name="account.tax",
|
||||
inverse_name="tax_group_id",
|
||||
string="Taxes",
|
||||
)
|
||||
Reference in New Issue
Block a user