odoo18/addons/l10n_account_withholding_tax/models/res_company.py

17 lines
459 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResCompany(models.Model):
_inherit = 'res.company'
# ------------------
# Fields declaration
# ------------------
withholding_tax_base_account_id = fields.Many2one(
comodel_name='account.account',
string="Withholding Tax Base",
help="This account will be set on withholding tax base lines.",
)