oca-ocb-l10n_americas/odoo-bringout-oca-ocb-l10n_ec/l10n_ec/models/account_tax.py
Ernad Husremovic 1b82c20a58 19.0 vanilla
2026-03-09 09:31:16 +01:00

21 lines
746 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class AccountTax(models.Model):
_inherit = "account.tax"
l10n_ec_code_base = fields.Char(
string="Code base",
help="Ecuador: Tax declaration code of the base amount prior to the calculation of the tax.",
)
l10n_ec_code_applied = fields.Char(
string="Code applied",
help="Ecuador: Tax declaration code of the resulting amount after the calculation of the tax.",
)
l10n_ec_code_ats = fields.Char(
string="Code ATS",
help="Ecuador: Indicates if the purchase invoice supports tax credit or cost or expenses, conforming table 5 of ATS.",
)