Files
app-odoo/app_common/wizard/mail_compose_message_views.xml
2024-08-08 23:00:15 +08:00

15 lines
794 B
XML

<?xml version="1.0" encoding="UTF-8" ?>
<odoo>
<record id="app_mail_compose_message_form" model="ir.ui.view">
<field name="name">app.mail.compose.message.form</field>
<field name="model">mail.compose.message</field>
<field name="inherit_id" ref="mail.email_compose_message_wizard_form"/>
<field name="arch" type="xml">
<xpath expr="//footer/button[@name='action_send_mail']" position="before">
<field name="show_send_without_mail" invisible="1"/>
<button string="Send Without Mail" name="action_send_without_mail" type="object" class="btn-primary" data-hotkey="a"
attrs="{'invisible': [('show_send_without_mail', '=', False)]}"/>
</xpath>
</field>
</record>
</odoo>