[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
Houzéfa Abbasbhay 2025-01-30 09:34:36 +01:00
parent 1c7f3e112a
commit 5e633bc7c1
No known key found for this signature in database
GPG Key ID: B30E9425D9198EC1
1 changed files with 8 additions and 3 deletions

View File

@ -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>