1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_uy/models/account_tax.py
2024-12-10 09:04:09 +07:00

12 lines
355 B
Python

# 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_uy_tax_category = fields.Selection([
('vat', 'VAT'),
], string="Tax Category", help="UY: Use to group the transactions in the Financial Reports required by DGI")