mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[MIG] web_ir_actions_act_multi: Migration to 15.0
This commit is contained in:
15
web_ir_actions_act_multi/models/ir_actions.py
Normal file
15
web_ir_actions_act_multi/models/ir_actions.py
Normal 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"}
|
||||
Reference in New Issue
Block a user