Example #1
0
         $label = !empty($prod->multilangs[$outputlangs->defaultlang]["label"]) ? $prod->multilangs[$outputlangs->defaultlang]["label"] : $objp->product_label;
     } else {
         $label = !empty($objp->label) ? $objp->label : $objp->product_label;
     }
     print '<td>';
     print '<a name="' . $objp->rowid . '"></a>';
     // ancre pour retourner sur la ligne
     // Show product and description
     $product_static->type = $type;
     $product_static->id = $objp->fk_product;
     $product_static->ref = $objp->ref;
     $product_static->entity = $objp->entity;
     $text = $product_static->getNomUrl(1);
     $text .= ' - ' . $label;
     $description = ($conf->global->PRODUIT_DESC_IN_FORM ? '' : dol_htmlentitiesbr($objp->description)) . '<br>';
     $description .= $product_static->show_photos($conf->product->multidir_output[$product_static->entity], 1, 1, 0, 0, 0, 80);
     print $form->textwithtooltip($text, $description, 3, '', '', $i);
     // Show range
     print_date_range($db->jdate($objp->date_start), $db->jdate($objp->date_end));
     // Add description in form
     if (!empty($conf->global->PRODUIT_DESC_IN_FORM)) {
         print $objp->description && $objp->description != $objp->product_label ? '<br>' . dol_htmlentitiesbr($objp->description) : '';
     }
     print '</td>';
 } else {
     print "<td>";
     if ($type == 1) {
         $text = img_object($langs->trans('Service'), 'service');
     } else {
         $text = img_object($langs->trans('Product'), 'product');
     }