14 lines
351 B
Python
14 lines
351 B
Python
# -*- coding: utf-8 -*-
|
|
# Copyright 2021 Joan Marín <Github@JoanMarin>
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountTaxGroup(models.Model):
|
|
_inherit = "account.tax.group"
|
|
|
|
is_einvoicing = fields.Boolean(
|
|
string="Does it Apply for E-Invoicing?",
|
|
default=True)
|