43 lines
1.3 KiB
Python
43 lines
1.3 KiB
Python
# Copyright (C) 2024 Cetmix OÜ
|
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
|
from odoo import models
|
|
|
|
|
|
class CxTowerJetTemplate(models.Model):
|
|
_name = "cx.tower.jet.template"
|
|
_inherit = [
|
|
"cx.tower.jet.template",
|
|
"cx.tower.yaml.mixin",
|
|
]
|
|
|
|
def _get_fields_for_yaml(self):
|
|
res = super()._get_fields_for_yaml()
|
|
res += [
|
|
"name",
|
|
"note",
|
|
"tag_ids",
|
|
"limit_per_server",
|
|
"show_in_create_wizard",
|
|
"plan_install_id",
|
|
"plan_uninstall_id",
|
|
"plan_clone_same_server_id",
|
|
"plan_clone_different_server_id",
|
|
"variable_value_ids",
|
|
"action_ids",
|
|
"template_requires_ids",
|
|
"waypoint_template_ids",
|
|
"server_log_ids",
|
|
"scheduled_task_ids",
|
|
]
|
|
return res
|
|
|
|
def _get_deferred_x2m_import_fields(self):
|
|
"""Return x2m child records resolved after the main import pass."""
|
|
return {
|
|
"template_requires_ids": {
|
|
"child_model": "cx.tower.jet.template.dependency",
|
|
"deferred_field": "template_required_id",
|
|
"target_model": "cx.tower.jet.template",
|
|
}
|
|
}
|