Skip to Content
Menú
This question has been flagged
1 Respondre
4906 Vistes

How can i remove all list of favorites from calendar right sidebar, and display only the list of event's state (busy/ ocupied/ free.. )?

Avatar
Descartar
Best Answer

The documentation about this is very poor but in https://www.odoo.com/documentation/11.0/reference/views.html#calendar show some ways to do parcialy what you need.

lets see..

    <record id="view_l10n_cu_calendar_event_calendar" model="ir.ui.view">
<field name="name">calendar.event.calendar</field>
<field name="model">calendar.event</field>
<field name="inherit_id" ref="calendar.view_calendar_event_calendar"/>
<field name="arch" type="xml">
<data>
<field name="partner_ids" position="replace" >
<field name="partner_ids"/>
</field>
</data>
</field>
</record>
Avatar
Descartar
Autor

Perfect Thanks

Did this wok for you Rick? Where did you implement this code?

Related Posts Respostes Vistes Activitat
4
de jul. 24
10632
1
de des. 21
4206
1
de maig 21
15669
0
de febr. 20
2712
1
de jul. 19
4214