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.
20 lines
818 B
20 lines
818 B
<?xml version="1.0" encoding="UTF-8" ?>
|
|
<odoo>
|
|
<!-- Define the view for sending stock picking by WhatsApp -->
|
|
<record id="view_picking_form" model="ir.ui.view">
|
|
<field name="name">
|
|
stock.picking.view.form.inherit.whatsapp.integration.odoo
|
|
</field>
|
|
<field name="model">stock.picking</field>
|
|
<field name="inherit_id" ref="stock.view_picking_form"/>
|
|
<field name="arch" type="xml">
|
|
<xpath expr="//form/header/button[@name='action_cancel']"
|
|
position="after">
|
|
<button name="action_send_by_whatsapp" type="object"
|
|
class="oe_highlight"
|
|
string="Send By Whatsapp"
|
|
icon="fa-whatsapp"/>
|
|
</xpath>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|