44 lines
2.4 KiB
XML
44 lines
2.4 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<data>
|
|
<record id="mail_resend_message_view_form" model="ir.ui.view">
|
|
<field name="name">mail.resend.message.view.form</field>
|
|
<field name="model">mail.resend.message</field>
|
|
<field name="groups_id" eval="[Command.link(ref('base.group_user'))]"/>
|
|
<field name="arch" type="xml">
|
|
<form string="Edit Partners">
|
|
<field name="mail_message_id" invisible="1"/>
|
|
<field name="notification_ids" invisible="1"/>
|
|
<field name="can_resend" invisible="1"/>
|
|
<field name="partner_readonly" invisible="1"/>
|
|
<field name="partner_ids">
|
|
<tree string="Recipient" editable="top" create="0" delete="0">
|
|
<field name="name" readonly="1"/>
|
|
<field name="email" readonly="parent.partner_readonly"/>
|
|
<field name="message" readonly="1" class="text-wrap"/>
|
|
<field name="resend" widget="boolean_toggle"/>
|
|
<button name="action_open_resend_partner" type="object"
|
|
string="See Error Details" class="btn-link"/>
|
|
</tree>
|
|
</field>
|
|
<footer>
|
|
<button string="Send & close" name="resend_mail_action" type="object" class="btn-primary o_mail_send"
|
|
invisible="not can_resend" data-hotkey="q"/>
|
|
<button string="Ignore all" name="cancel_mail_action" type="object" class="btn-primary"
|
|
invisible="can_resend" data-hotkey="w"/>
|
|
<button string="Ignore all" name="cancel_mail_action" type="object" class="btn-secondary"
|
|
invisible="not can_resend" data-hotkey="w"/>
|
|
<button string="Close" class="btn-secondary" special="cancel" data-hotkey="x"/>
|
|
</footer>
|
|
</form>
|
|
</field>
|
|
</record>
|
|
<record id="mail_resend_message_action" model="ir.actions.act_window">
|
|
<field name="name">Sending Failures</field>
|
|
<field name="res_model">mail.resend.message</field>
|
|
<field name="view_mode">form</field>
|
|
<field name="target">new</field>
|
|
</record>
|
|
</data>
|
|
</odoo>
|