mirror of
https://github.com/bringout/oca-ocb-technical.git
synced 2026-04-22 12:52:08 +02:00
50 lines
2.6 KiB
XML
50 lines
2.6 KiB
XML
<?xml version="1.0"?>
|
|
<odoo>
|
|
|
|
<record id="mail_activity_view_form_popup" model="ir.ui.view">
|
|
<field name="name">mail.activity.form.inherit.calendar</field>
|
|
<field name="model">mail.activity</field>
|
|
<field name="inherit_id" ref="mail.mail_activity_view_form_popup"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//field[@name='date_deadline']" position="attributes">
|
|
<attribute name="invisible">activity_category == 'meeting'</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='user_id']" position="attributes">
|
|
<attribute name="invisible">activity_category == 'meeting'</attribute>
|
|
</xpath>
|
|
<xpath expr="//button[@id='mail_activity_schedule']" position="attributes">
|
|
<attribute name="invisible">activity_category in ['meeting', 'phonecall'] or id</attribute>
|
|
</xpath>
|
|
<xpath expr="//button[@id='mail_activity_save']" position="attributes">
|
|
<attribute name="invisible">activity_category != 'phonecall' and not id</attribute>
|
|
</xpath>
|
|
<xpath expr="//button[@name='action_done']" position="attributes">
|
|
<attribute name="invisible">activity_category == 'meeting' or chaining_type == 'trigger'</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='note']" position="attributes">
|
|
<attribute name="invisible">activity_category == 'meeting'</attribute>
|
|
</xpath>
|
|
<xpath expr="//field[@name='summary']" position="attributes">
|
|
<attribute name="invisible" add="activity_category == 'meeting'" separator="or"/>
|
|
</xpath>
|
|
<xpath expr="//field[@name='note']" position="before">
|
|
<div invisible="activity_category != 'meeting'" class="text-muted text-center w-100">
|
|
<div>
|
|
<i class="fa fa-9x fa-calendar p-3" title="Calendar" aria-hidden="true"/>
|
|
</div>
|
|
<p>Schedule a meeting in your calendar</p>
|
|
</div>
|
|
</xpath>
|
|
<xpath expr="//button[@name='action_close_dialog']" position="before">
|
|
<field name="calendar_event_id" invisible="1" />
|
|
<button string="Schedule"
|
|
close="1"
|
|
invisible="activity_category != 'meeting' or calendar_event_id"
|
|
name="action_create_calendar_event"
|
|
type="object"
|
|
class="btn-primary"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
|
|
</odoo>
|