Tower: upload cetmix_tower_server 16.0.2.2.9 (via marketplace)

This commit is contained in:
2026-04-27 08:43:49 +00:00
parent b48081c8e2
commit aa1b8801ce

View File

@@ -0,0 +1,18 @@
from odoo import fields, models
class CxTowerScheduledTaskCv(models.Model):
"""
Custom variable values for scheduled tasks.
"""
_inherit = "cx.tower.custom.variable.value.mixin"
_name = "cx.tower.scheduled.task.cv"
_description = "Custom variable values for scheduled tasks"
scheduled_task_id = fields.Many2one(
"cx.tower.scheduled.task",
string="Scheduled Task",
required=True,
ondelete="cascade",
)