Files
reporting-engine/kpi_dashboard/models/ir_actions_act_window_view.py
2020-10-22 22:56:03 +02:00

11 lines
294 B
Python

# Copyright 2019 Creu Blanca
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
from odoo import fields, models
class IrActionsActWindowView(models.Model):
_inherit = "ir.actions.act_window.view"
view_mode = fields.Selection(selection_add=[("dashboard", "Dashboard")])