diff options
Diffstat (limited to 'addons/crm/wizard/crm_lead_to_opportunity_views.xml')
| -rw-r--r-- | addons/crm/wizard/crm_lead_to_opportunity_views.xml | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/addons/crm/wizard/crm_lead_to_opportunity_views.xml b/addons/crm/wizard/crm_lead_to_opportunity_views.xml new file mode 100644 index 00000000..2a379c19 --- /dev/null +++ b/addons/crm/wizard/crm_lead_to_opportunity_views.xml @@ -0,0 +1,53 @@ +<?xml version="1.0"?> +<odoo> + <record id="view_crm_lead2opportunity_partner" model="ir.ui.view"> + <field name="name">crm.lead2opportunity.partner.form</field> + <field name="model">crm.lead2opportunity.partner</field> + <field name="arch" type="xml"> + <form string="Convert to Opportunity"> + <group name="name"> + <field name="name" widget="radio"/> + </group> + <group string="Assign this opportunity to"> + <field name="user_id" domain="[('share', '=', False)]"/> + <field name="team_id" widget="selection"/> + </group> + <group string="Opportunities" attrs="{'invisible': [('name', '!=', 'merge')]}"> + <field name="lead_id" invisible="1"/> + <field name="duplicated_lead_ids" nolabel="1"> + <tree> + <field name="create_date" widget="date"/> + <field name="name"/> + <field name="type"/> + <field name="contact_name"/> + <field name="country_id" invisible="context.get('invisible_country', True)"/> + <field name="email_from"/> + <field name="stage_id"/> + <field name="user_id"/> + <field name="team_id" kanban_view_ref="%(sales_team.crm_team_view_kanban)s"/> + </tree> + </field> + </group> + <group name="action" attrs="{'invisible': [('name', '!=', 'convert')]}" string="Customer" col="1"> + <field name="action" nolabel="1" widget="radio"/> + <group col="2"> + <field name="partner_id" widget="res_partner_many2one" context="{'res_partner_search_mode': 'customer', 'show_vat': True}" attrs="{'required': [('action', '=', 'exist')], 'invisible':[('action','!=','exist')]}"/> + </group> + </group> + <footer> + <button name="action_apply" string="Create Opportunity" type="object" class="btn-primary"/> + <button string="Cancel" class="btn-secondary" special="cancel"/> + </footer> + </form> + </field> + </record> + + <record id="action_crm_lead2opportunity_partner" model="ir.actions.act_window"> + <field name="name">Convert to opportunity</field> + <field name="type">ir.actions.act_window</field> + <field name="res_model">crm.lead2opportunity.partner</field> + <field name="view_mode">form</field> + <field name="view_id" ref="view_crm_lead2opportunity_partner"/> + <field name="target">new</field> + </record> +</odoo> |
