forked from Mapan/odoo17e
12 lines
408 B
Python
12 lines
408 B
Python
# -*- coding: utf-8 -*-
|
|
# 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"
|
|
|
|
appraisal_survey_template_id = fields.Many2one(
|
|
'survey.survey', related='company_id.appraisal_survey_template_id', domain=[('survey_type', '=', 'appraisal')], readonly=False)
|