Tower: upload cetmix_tower_server 16.0.3.0.1 (via marketplace)

This commit is contained in:
2026-04-27 08:16:05 +00:00
parent 90c893ae66
commit 90f7afa720

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",
)