forked from Techsystech/web
[IMP] web_ir_actions_act_view_reload: Change IrActionsActViewReload to AbstractModel
parent
c375a6f8b0
commit
3d29e45ac9
|
@ -1,7 +1,9 @@
|
|||
from odoo import models
|
||||
|
||||
|
||||
class IrActionsActViewReload(models.Model):
|
||||
class IrActionsActViewReload(models.AbstractModel):
|
||||
_name = "ir.actions.act_view_reload"
|
||||
_inherit = "ir.actions.actions"
|
||||
_description = "View Reload"
|
||||
|
||||
def _get_readable_fields(self):
|
||||
return self.env["ir.actions.actions"]._get_readable_fields()
|
||||
|
|
Loading…
Reference in New Issue