2021-01-26 15:06:17 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8" ?>
|
2018-01-23 13:36:17 +01:00
|
|
|
<odoo>
|
|
|
|
|
|
|
|
<record model="ir.ui.view" id="view_mail_mass_mailing_form">
|
2020-02-05 10:34:32 +01:00
|
|
|
<field name="model">mailing.mailing</field>
|
2021-01-26 15:06:17 +01:00
|
|
|
<field name="inherit_id" ref="mass_mailing.view_mail_mass_mailing_form" />
|
2018-01-23 13:36:17 +01:00
|
|
|
<field name="arch" type="xml">
|
|
|
|
<field name="state" position="before">
|
2021-01-26 15:06:17 +01:00
|
|
|
<button
|
|
|
|
string="Resend"
|
|
|
|
states="done"
|
|
|
|
name="button_draft"
|
|
|
|
type="object"
|
2018-01-23 13:36:17 +01:00
|
|
|
/>
|
|
|
|
</field>
|
|
|
|
<header position="after">
|
2021-01-26 15:06:17 +01:00
|
|
|
<div
|
|
|
|
class="oe_form_box_info bg-warning oe_text_center"
|
|
|
|
attrs="{'invisible': ['|', ('state', '!=', 'draft'), ('sent', '=', 0)]}"
|
|
|
|
>
|
2018-01-23 13:36:17 +01:00
|
|
|
<p>
|
2021-01-26 15:06:17 +01:00
|
|
|
<i
|
|
|
|
class="fa fa-info-circle"
|
|
|
|
/> New sending will be done only to not sent/new recipients. If you want to resend again the mass mailing to already sent recipients, click on <b
|
|
|
|
>Emails Sent</b> smart-button for removing the existing record(s).
|
2018-01-23 13:36:17 +01:00
|
|
|
</p>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<div name="button_box" position="attributes">
|
|
|
|
<attribute name="attrs">{'invisible': [('sent', '=', 0)]}</attribute>
|
|
|
|
</div>
|
|
|
|
</field>
|
|
|
|
</record>
|
|
|
|
|
|
|
|
</odoo>
|