From 07263c78719583e76916911b303fc0df79035f31 Mon Sep 17 00:00:00 2001 From: thsh-odoo <thsh@odoo.com> Date: Thu, 20 Apr 2023 09:48:24 +0000 Subject: [PATCH] [FIX] crm: improve layout of conversion modal MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit When converting a lead to an opportunity and merging with existing opportunities, the list view showing opportunities is very tiny. This is caused by the field not having the correct colspan, as its label is hidden with the "nolabel" attribute. This commit fixes it by assigning a colpan of 2. Task-3179173 closes odoo/odoo#119689 X-original-commit: 6a003a12c92d215f8123538473eeb23a36e9ec7e Signed-off-by: Warnon Aurélien (awa) <awa@odoo.com> --- addons/crm/wizard/crm_lead_to_opportunity_views.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/crm/wizard/crm_lead_to_opportunity_views.xml b/addons/crm/wizard/crm_lead_to_opportunity_views.xml index bb7e9946e1e8..3313974e1094 100644 --- a/addons/crm/wizard/crm_lead_to_opportunity_views.xml +++ b/addons/crm/wizard/crm_lead_to_opportunity_views.xml @@ -14,7 +14,7 @@ </group> <group string="Opportunities" attrs="{'invisible': [('name', '!=', 'merge')]}"> <field name="lead_id" invisible="1"/> - <field name="duplicated_lead_ids" nolabel="1"> + <field name="duplicated_lead_ids" colspan="2" nolabel="1"> <tree> <field name="create_date" widget="date"/> <field name="name"/> -- GitLab