mirror of
https://gitlab.com/flectra-community/reporting-engine.git
synced 2024-11-15 02:32:05 +00:00
13 lines
346 B
Python
13 lines
346 B
Python
|
# Copyright 2019 Creu Blanca
|
||
|
# License AGPL-3.0 or later (http://www.gnu.org/licenses/agpl).
|
||
|
|
||
|
from flectra import fields, models
|
||
|
|
||
|
|
||
|
class IrActionsActWindowView(models.Model):
|
||
|
_inherit = "ir.actions.act_window.view"
|
||
|
|
||
|
view_mode = fields.Selection(
|
||
|
selection_add=[("dashboard", "Dashboard")], ondelete={"dashboard": "cascade"}
|
||
|
)
|