13 lines
371 B
Python
13 lines
371 B
Python
from odoo import fields, models
|
|
|
|
|
|
class AccountTax(models.Model):
|
|
_inherit = "account.tax"
|
|
|
|
l10n_tr_tax_withholding_code_id = fields.Many2one(
|
|
comodel_name="l10n_tr_nilvera_einvoice_extended.account.tax.code",
|
|
string="Withholding Reason",
|
|
domain="[('code_type', '=', 'withholding')]",
|
|
help="The reason for withholding tax.",
|
|
)
|