12 lines
315 B
Python
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")
|