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.
17 lines
692 B
17 lines
692 B
<?xml version="1.0" encoding="UTF-8"?>
|
|
<odoo>
|
|
<!-- This XML defines a new view that inherits from 'mail.mail_channel_view_form'.
|
|
It adds a fields for the phone number in the form view. -->
|
|
<record id="mail_channel_view_form" model="ir.ui.view">
|
|
<field name="name">
|
|
mail.channel.view.form.inherit.all.in.one.whatsapp.integration
|
|
</field>
|
|
<field name="model">mail.channel</field>
|
|
<field name="inherit_id" ref="mail.mail_channel_view_form"/>
|
|
<field name="arch" type="xml">
|
|
<field name="description" position="after">
|
|
<field name="phone"/>
|
|
</field>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|