Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
4931 Vizualizări

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

Imagine profil
Abandonează
Cel mai bun răspuns

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>
Imagine profil
Abandonează
Autor

Perfect Thanks

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

Related Posts Răspunsuri Vizualizări Activitate
4
iul. 24
10661
1
dec. 21
4233
1
mai 21
15702
0
feb. 20
2728
1
iul. 19
4224