summaryrefslogtreecommitdiff
path: root/addons/mass_mailing_event/views/event_views.xml
blob: 151274188325207ae3e41d61ee93f284b6e5beb8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<?xml version="1.0"?>
<odoo>
    <record id="event_event_view_form_inherit_mass_mailing" model="ir.ui.view">
        <field name="name">event.event.view.form.inherit.mass.mailing</field>
        <field name="model">event.event</field>
        <field name="priority" eval="4"/>
        <field name="inherit_id" ref="event.view_event_form"/>
        <field name="arch" type="xml">
            <xpath expr="//field[@name='stage_id']" position="before">
                <field name="event_registrations_open" invisible="1"/>
                <button name="action_invite_contacts" type="object" string="Invite"
                    class="btn btn-primary"
                    groups="mass_mailing.group_mass_mailing_user"
                    attrs="{'invisible': [('event_registrations_open', '=', False)]}"/>
                <button name="action_invite_contacts" type="object" string="Invite"
                    class="btn btn-secondary"
                    groups="mass_mailing.group_mass_mailing_user"
                    attrs="{'invisible': [('event_registrations_open', '=', True)]}"/>
                <button name="action_mass_mailing_attendees" type="object" string="Contact Attendees"
                    groups="mass_mailing.group_mass_mailing_user"
                    attrs="{'invisible': [('seats_expected', '=', 0)]}"/>
            </xpath>
        </field>
    </record>
</odoo>