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

14 lines
436 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'
l10n_ar_tax_base_account_id = fields.Many2one(
comodel_name='account.account',
domain=[('deprecated', '=', False)],
string="Tax Base Account",
help="Account that will be set on lines created to represent the tax base amounts.")