16 lines
459 B
Python
16 lines
459 B
Python
# Part of Odoo. See LICENSE file for full copyright and licensing details.
|
|
from odoo import fields, models
|
|
|
|
|
|
class AccountTax(models.Model):
|
|
_inherit = 'account.tax'
|
|
|
|
# ------------------
|
|
# Fields declaration
|
|
# ------------------
|
|
|
|
l10n_my_tax_exemption_reason = fields.Char(
|
|
string="Malaysian Tax Exemption Reason",
|
|
help="The reason for tax exemption, used when submitting consolidated invoices including this tax.",
|
|
)
|