blob: b65f80cc2ec91427f2c293c49169d4ce3a8c575f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?xml version="1.0" encoding="utf-8"?>
<odoo>
<record id="crm_lead_view_form" model="ir.ui.view">
<field name="name">crm.lead.view.form.inherit.iap.lead.enrich</field>
<field name="model">crm.lead</field>
<field name="inherit_id" ref="crm.crm_lead_view_form"/>
<field name="arch" type="xml">
<xpath expr="//button[@name='%(crm.action_crm_lead2opportunity_partner)d']" position="after">
<field name="show_enrich_button" invisible="1"/>
<button string="Enrich" name="iap_enrich" type="object" class="btn btn-secondary"
title="Enrich this lead with company data based on the email address"
attrs="{'invisible':['|',('show_enrich_button', '!=', True),('type','=','opportunity')]}"/>
<button string="Enrich" name="iap_enrich" type="object" class="btn btn-secondary"
title="Enrich this opportunity with company data based on the email address"
attrs="{'invisible':['|',('show_enrich_button', '!=', True),('type','=','lead')]}"/>
</xpath>
</field>
</record>
</odoo>
|