跳至内容
菜单
此问题已终结
1 回复
4910 查看

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

形象
丢弃
最佳答案

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>
形象
丢弃
编写者

Perfect Thanks

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

相关帖文 回复 查看 活动
4
7月 24
10645
1
12月 21
4215
1
5月 21
15678
0
2月 20
2714
1
7月 19
4218