[MIG] web_ir_actions_act_multi: Migration to 14.0

This commit is contained in:
Raf Ven
2021-06-08 11:51:17 +02:00
parent 7799c74bce
commit f909a67648
5 changed files with 20 additions and 1 deletions

View File

@@ -0,0 +1 @@
from . import ir_actions

View File

@@ -0,0 +1,15 @@
# Part of Odoo. See LICENSE file for full copyright and licensing details.
from odoo import fields, models
class IrActionsActMulti(models.Model):
_name = "ir.actions.act_multi"
_description = "Action Mulit"
_inherit = "ir.actions.actions"
_table = "ir_actions"
type = fields.Char(default="ir.actions.act_multi")
def _get_readable_fields(self):
return super()._get_readable_fields() | {"actions"}