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
1.1 KiB
22 lines
1.1 KiB
<?xml version="1.0" encoding="utf-8"?>
|
|
<odoo>
|
|
<!-- This XML record defines a customization for the CRM Lead form view.
|
|
It inherits from the existing view 'crm.crm_lead_view_form' and adds a smart button inside the 'button_box' element.
|
|
The added button allows the user to create custom fields for the CRM Leads.-->
|
|
<record id="crm_lead_view_form" model="ir.ui.view">
|
|
<field name="name">crm.lead.view.form.inherit.crm.dynamic.fields</field>
|
|
<field name="model">crm.lead</field>
|
|
<field name="inherit_id" ref="crm.crm_lead_view_form"/>
|
|
<field eval="1" name="priority"/>
|
|
<field name="arch" type="xml">
|
|
<div name="button_box" position="inside">
|
|
<button class="oe_stat_button o_res_partner_tip_opp"
|
|
type="action"
|
|
name="%(crm_dynamic_fields.crm_dynamic_fields_create_action)d"
|
|
string="Create Fields" help="Create Custom Fields"
|
|
icon="fa-plus"
|
|
groups="crm_dynamic_fields.group_add_crm_dynamic_fields"/>
|
|
</div>
|
|
</field>
|
|
</record>
|
|
</odoo>
|
|
|