mirror of
https://github.com/bringout/oca-ocb-l10n_americas.git
synced 2026-04-27 19:12:05 +02:00
10 lines
354 B
Python
10 lines
354 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")
|