You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

28 lines
1.3 KiB

  1. <?xml version="1.0" encoding="utf-8"?>
  2. <odoo>
  3. <record model="ir.ui.view" id="view_mail_mass_mailing_form">
  4. <field name="model">mail.mass_mailing</field>
  5. <field name="inherit_id" ref="mass_mailing.view_mail_mass_mailing_form"/>
  6. <field name="arch" type="xml">
  7. <field name="state" position="before">
  8. <button string="Resend"
  9. states="done"
  10. name="button_draft"
  11. type="object"
  12. />
  13. </field>
  14. <header position="after">
  15. <div class="oe_form_box_info bg-warning oe_text_center" attrs="{'invisible': ['|', ('state', '!=', 'draft'), ('sent', '=', 0)]}">
  16. <p>
  17. <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).
  18. </p>
  19. </div>
  20. </header>
  21. <div name="button_box" position="attributes">
  22. <attribute name="attrs">{'invisible': [('sent', '=', 0)]}</attribute>
  23. </div>
  24. </field>
  25. </record>
  26. </odoo>