[MIG] web_ir_actions_act_multi: Migration to 15.0

This commit is contained in:
matiasperalta1
2021-12-23 14:44:51 -03:00
parent 3c7aa0d867
commit 5896610cf1
12 changed files with 59 additions and 67 deletions

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"}