Se rendre au contenu
Menu
Cette question a été signalée
1 Répondre
4944 Vues

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
Ignorer
Meilleure réponse

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
Ignorer
Auteur

Perfect Thanks

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

Publications associées Réponses Vues Activité
4
juil. 24
10678
1
déc. 21
4241
1
mai 21
15710
0
févr. 20
2729
1
juil. 19
4227