Tower: upload queue_job 16.0.2.12.0 (via marketplace)

This commit is contained in:
2026-04-27 08:46:25 +00:00
parent 942da80b9c
commit 9ceb54d29c

View File

@@ -0,0 +1,13 @@
# Copyright 2020 Camptocamp
# License LGPL-3.0 or later (http://www.gnu.org/licenses/lgpl.html)
from odoo import fields, models
class IrModelFields(models.Model):
_inherit = "ir.model.fields"
ttype = fields.Selection(
selection_add=[("job_serialized", "Job Serialized")],
ondelete={"job_serialized": "cascade"},
)