17 lines
412 B
Python
17 lines
412 B
Python
|
from odoo import fields, models
|
||
|
|
||
|
|
||
|
class ResCompany(models.Model):
|
||
|
_inherit = 'res.company'
|
||
|
|
||
|
l10n_in_withholding_account_id = fields.Many2one(
|
||
|
comodel_name='account.account',
|
||
|
string="TDS Account",
|
||
|
check_company=True,
|
||
|
)
|
||
|
l10n_in_withholding_journal_id = fields.Many2one(
|
||
|
comodel_name='account.journal',
|
||
|
string="TDS Journal",
|
||
|
check_company=True,
|
||
|
)
|