1
0
forked from Mapan/odoo17e
odoo17e-kedaikipas58/addons/l10n_lt_intrastat/models/res_config_settings.py
2024-12-10 09:04:09 +07:00

16 lines
533 B
Python

# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class ResConfigSettings(models.TransientModel):
_inherit = 'res.config.settings'
intrastat_region_id = fields.Many2one(
comodel_name='account.intrastat.code',
string="Company Intrastat Region",
related='company_id.intrastat_region_id',
domain="[('type', '=', 'region'), '|', ('country_id', '=', None), ('country_id', '=', account_fiscal_country_id)]",
readonly=False,
)