Odoo18-Base/addons/l10n_in_withholding/models/account_tax.py
2025-03-10 10:52:11 +07:00

11 lines
231 B
Python

from odoo import fields, models
class AccountTax(models.Model):
_inherit = 'account.tax'
l10n_in_tds_tax_type = fields.Selection([
('sale', 'Sale'),
('purchase', 'Purchase')
], string="TDS Tax Type")