diff --git a/htdocs/product/reassort.php b/htdocs/product/reassort.php
index 907ad1664d3..cbcffa433f6 100644
--- a/htdocs/product/reassort.php
+++ b/htdocs/product/reassort.php
@@ -549,8 +549,8 @@ if ($resql) {
if (getDolGlobalString('MAIN_CHECKBOX_LEFT_COLUMN')) {
print '
| ';
}
- print '';
- print $product->getNomUrl(1, '', 16);
+ print ' | ';
+ print $product->getNomUrl(1);
//if ($objp->stock_theorique < $objp->seuil_stock_alerte) print ' '.img_warning($langs->trans("StockTooLow"));
print ' | ';
print ''.dol_escape_htmltag($product->label).' | ';
diff --git a/htdocs/product/reassortlot.php b/htdocs/product/reassortlot.php
index d2f3caf3442..dfc6aff3295 100644
--- a/htdocs/product/reassortlot.php
+++ b/htdocs/product/reassortlot.php
@@ -765,8 +765,8 @@ while ($i < $imaxinloop) {
}
// Ref
- print '';
- print $product_static->getNomUrl(1, '', 16);
+ print ' | ';
+ print $product_static->getNomUrl(1);
//if ($objp->stock_theorique < $objp->seuil_stock_alerte) print ' '.img_warning($langs->trans("StockTooLow"));
print ' | ';
if (!$i) {
@@ -774,7 +774,7 @@ while ($i < $imaxinloop) {
}
// Label
- print ''.$objp->label.' | ';
+ print ''.$objp->label.' | ';
if (!$i) {
$totalarray['nbfield']++;
}
diff --git a/htdocs/product/stock/class/productlot.class.php b/htdocs/product/stock/class/productlot.class.php
index 5eadd6ebbcf..f6f7c9fcab7 100644
--- a/htdocs/product/stock/class/productlot.class.php
+++ b/htdocs/product/stock/class/productlot.class.php
@@ -148,7 +148,7 @@ class Productlot extends CommonObject
*/
public $fields = array(
'rowid' => array('type' => 'integer', 'label' => 'TechnicalID', 'enabled' => 1, 'visible' => -2, 'noteditable' => 1, 'notnull' => 1, 'index' => 1, 'position' => 1, 'comment' => 'Id', 'css' => 'left'),
- 'fk_product' => array('type' => 'integer:Product:product/class/product.class.php', 'label' => 'Product', 'enabled' => 1, 'visible' => 1, 'position' => 5, 'notnull' => 1, 'index' => 1, 'searchall' => 1, 'picto' => 'product', 'css' => 'maxwidth500 widthcentpercentminusxx', 'csslist' => 'maxwidth150'),
+ 'fk_product' => array('type' => 'integer:Product:product/class/product.class.php', 'label' => 'Product', 'enabled' => 1, 'visible' => 1, 'position' => 5, 'notnull' => 1, 'index' => 1, 'searchall' => 1, 'picto' => 'product', 'css' => 'maxwidth500 widthcentpercentminusxx', 'csslist' => 'tdoverflowmax250'),
'batch' => array('type' => 'varchar(30)', 'label' => 'Batch', 'enabled' => 1, 'visible' => 1, 'notnull' => 1, 'showoncombobox' => 1, 'index' => 1, 'position' => 10, 'comment' => 'Batch', 'searchall' => 1, 'picto' => 'lot', 'validate' => 1),
'entity' => array('type' => 'integer', 'label' => 'Entity', 'enabled' => 1, 'visible' => 0, 'default' => '1', 'notnull' => 1, 'index' => 1, 'position' => 20),
'sellby' => array('type' => 'date', 'label' => 'SellByDate', 'enabled' => 'empty($conf->global->PRODUCT_DISABLE_SELLBY)?1:0', 'visible' => 1, 'notnull' => 0, 'position' => 60),