blob: b3a56a3ee1b8da5ad28ef22a16912ce653ae4e47 (
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record model="ir.ui.view" id="utm_campaign_view_form">
<field name="name">utm.campaign.view.form</field>
<field name="model">utm.campaign</field>
<field name="inherit_id" ref="utm.utm_campaign_view_form"/>
<field name="arch" type="xml">
<xpath expr="//header" position="inside">
<button name="action_create_mass_sms" type="object" class="oe_highlight" string="Send SMS"/>
</xpath>
<xpath expr="//div[hasclass('oe_button_box')]" position="inside">
<button name="action_redirect_to_mailing_sms"
type="object"
class="oe_stat_button order-11"
attrs="{'invisible': [('mailing_sms_count', '=', 0)]}"
icon="fa-mobile">
<field name="mailing_sms_count" widget="statinfo" string="SMS"/>
</button>
</xpath>
<xpath expr="//notebook" position="inside">
<page string="SMS" name="sms" attrs="{'invisible': [('mailing_sms_count', '=', 0)]}">
<group>
<field name="mailing_sms_ids" readonly="1" nolabel="1">
<tree>
<field name="subject"/>
<field name="sent_date"/>
<field name="state"/>
<field name="bounced"/>
<field name="delivered"/>
<button name="action_duplicate" type="object" string="Duplicate"/>
</tree>
</field>
</group>
</page>
</xpath>
</field>
</record>
<record model="ir.ui.view" id="utm_campaign_view_kanban">
<field name="name">utm.campaign.view.kanban</field>
<field name="model">utm.campaign</field>
<field name="inherit_id" ref="utm.utm_campaign_view_kanban"/>
<field name="arch" type="xml">
<xpath expr="//field[@name='user_id']" position="after">
<field name="mailing_sms_count"/>
</xpath>
<xpath expr="//ul[@id='o_utm_actions']">
<a name="action_redirect_to_mailing_sms" type="object"
t-attf-class="oe_mailings #{record.mailing_sms_count.raw_value === 0 ? 'text-muted' : ''}">
<t t-raw="record.mailing_sms_count.raw_value"/> SMS
</a>
</xpath>
</field>
</record>
<menuitem name="Campaigns" id="menu_email_campaigns"
parent="mass_mailing_sms_menu_root" sequence="5"
action="mass_mailing.action_view_utm_campaigns"
groups="mass_mailing.group_mass_mailing_campaign"/>
</odoo>
|