diff --git a/htdocs/takepos/invoice.php b/htdocs/takepos/invoice.php
index bf68713a806..9f0705b967d 100644
--- a/htdocs/takepos/invoice.php
+++ b/htdocs/takepos/invoice.php
@@ -916,14 +916,16 @@ if ($placeid > 0)
if (empty($conf->global->TAKEPOS_SHOW_N_FIRST_LINES)) {
$tooltiptext = ''.$langs->trans("Ref").' : '.$line->product_ref.'
';
$tooltiptext .= ''.$langs->trans("Label").' : '.$line->product_label.'
';
- $tooltiptext .= '
';
- $tooltiptext .= $line->desc;
+ if ($line->product_label != $line->desc) {
+ if ($line->desc) $tooltiptext .= '
';
+ $tooltiptext .= $line->desc;
+ }
$htmlforlines .= $form->textwithpicto($line->product_label ? $line->product_label : $line->product_ref, $tooltiptext);
} else {
if ($line->product_label) $htmlforlines .= $line->product_label;
- if ($line->product_label && $line->desc) $htmlforlines .= '
';
if ($line->product_label != $line->desc)
{
+ if ($line->product_label && $line->desc) $htmlforlines .= '
';
$firstline = dolGetFirstLineOfText($line->desc, $conf->global->TAKEPOS_SHOW_N_FIRST_LINES);
if ($firstline != $line->desc)
{