mirror of https://github.com/OCA/web.git
[IMP] web_timeline: Safer demo view action override
Append our view_mode this way to avoid overwriting changes done by other modules.pull/3073/head
parent
1c7f3e112a
commit
5e633bc7c1
|
@ -8,7 +8,12 @@
|
|||
<timeline date_start="nextcall" default_group_by="model_id" />
|
||||
</field>
|
||||
</record>
|
||||
<record id="base.ir_cron_act" model="ir.actions.act_window">
|
||||
<field name="view_mode">tree,form,calendar,timeline</field>
|
||||
</record>
|
||||
<!-- Append our view_mode this way to avoid overwriting changes done by other modules. -->
|
||||
<function model="ir.actions.act_window" name="write">
|
||||
<value eval="[ref('base.ir_cron_act')]" />
|
||||
<value
|
||||
model="ir.actions.act_window"
|
||||
eval="{'view_mode': obj().env.ref('base.ir_cron_act').view_mode + ',timeline'}"
|
||||
/>
|
||||
</function>
|
||||
</odoo>
|
||||
|
|
Loading…
Reference in New Issue