Odoo18-Base/addons/l10n_in_withholding/models/account_tax.py
2025-01-06 10:57:38 +07:00

12 lines
315 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")
l10n_in_section_id = fields.Many2one('l10n_in.section.alert', string="Section")