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.
 
 
 
 
 

22 lines
830 B

<?xml version = "1.0" encoding = "UTF-8" ?>
<odoo>
<!-- Inherit res.company form view to add whatsapp_number and message
fields -->
<record id="view_company_form" model="ir.ui.view">
<field name="name">
res.company.view.form.inherit.whatsapp.product.inquiry
</field>
<field name="inherit_id" ref="base.view_company_form"/>
<field name="model">res.company</field>
<field name="arch" type="xml">
<xpath expr="//notebook" position="inside">
<page string="Whatsapp Configuration" name="Whatsapp">
<group>
<field name="whatsapp_number"/>
<field name="message"/>
</group>
</page>
</xpath>
</field>
</record>
</odoo>