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.
25 lines
1.2 KiB
25 lines
1.2 KiB
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<record model="ir.ui.view" id="account_move_form_view_inherited">
|
|
<field name="name">account.move.form.view.inherited</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_move_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//button[@name='preview_invoice']" position="after">
|
|
<button type="object" class="oe_stat_button" style="background-color: #25D366;color: white;"
|
|
name="action_send_whatsapp" icon="fa-whatsapp" string="Send by Whatsapp"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
<record model="ir.ui.view" id="account_move_list_view_inherited">
|
|
<field name="name">account.move.list.view.inherited</field>
|
|
<field name="model">account.move</field>
|
|
<field name="inherit_id" ref="account.view_out_invoice_tree"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//header" position="inside">
|
|
<button type="object" class="btn-primary"
|
|
name="action_whatsapp_multi" icon="fa-whatsapp" string="Send by Whatsapp"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|