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

14 lines
342 B
Python

from odoo import models, fields
class AccountMove(models.Model):
_inherit = "account.move"
l10n_in_withholding_ref_payment_id = fields.Many2one(
comodel_name='account.payment',
string="Indian TDS Ref Payment",
readonly=True,
copy=False,
help="Reference Payment for withholding entry",
)