1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_in_withholding/models/account_tax.py
2024-12-10 09:04:09 +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")