mirror of
https://github.com/OCA/reporting-engine.git
synced 2025-02-16 16:30:38 +02:00
13 lines
343 B
Python
13 lines
343 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")], ondelete={"dashboard": "cascade"}
|
|
)
|