[IMP] pre-commit run -a

This commit is contained in:
Jairo Llopis 2021-01-26 14:06:17 +00:00 committed by Víctor Martínez
parent eae9567e4a
commit f6d33d899d

View File

@ -1,21 +1,28 @@
<?xml version="1.0" encoding="utf-8"?> <?xml version="1.0" encoding="utf-8" ?>
<odoo> <odoo>
<record model="ir.ui.view" id="view_mail_mass_mailing_form"> <record model="ir.ui.view" id="view_mail_mass_mailing_form">
<field name="model">mailing.mailing</field> <field name="model">mailing.mailing</field>
<field name="inherit_id" ref="mass_mailing.view_mail_mass_mailing_form"/> <field name="inherit_id" ref="mass_mailing.view_mail_mass_mailing_form" />
<field name="arch" type="xml"> <field name="arch" type="xml">
<field name="state" position="before"> <field name="state" position="before">
<button string="Resend" <button
states="done" string="Resend"
name="button_draft" states="done"
type="object" name="button_draft"
type="object"
/> />
</field> </field>
<header position="after"> <header position="after">
<div class="oe_form_box_info bg-warning oe_text_center" attrs="{'invisible': ['|', ('state', '!=', 'draft'), ('sent', '=', 0)]}"> <div
class="oe_form_box_info bg-warning oe_text_center"
attrs="{'invisible': ['|', ('state', '!=', 'draft'), ('sent', '=', 0)]}"
>
<p> <p>
<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). <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).
</p> </p>
</div> </div>
</header> </header>