15 lines
410 B
Python
15 lines
410 B
Python
from odoo import fields, models
|
|
|
|
|
|
class ResConfigSettings(models.TransientModel):
|
|
_inherit = 'res.config.settings'
|
|
|
|
l10n_in_withholding_account_id = fields.Many2one(
|
|
related='company_id.l10n_in_withholding_account_id',
|
|
readonly=False,
|
|
)
|
|
l10n_in_withholding_journal_id = fields.Many2one(
|
|
related='company_id.l10n_in_withholding_journal_id',
|
|
readonly=False,
|
|
)
|