diff --git a/htdocs/product/list.php b/htdocs/product/list.php index 19b5c48df8f..efe63001349 100644 --- a/htdocs/product/list.php +++ b/htdocs/product/list.php @@ -1290,7 +1290,7 @@ if ($resql) if ($obj->fk_product_type != 1) { if ($obj->seuil_stock_alerte != '' && $product_static->stock_reel < (float) $obj->seuil_stock_alerte) print img_warning($langs->trans("StockLowerThanLimit", $obj->seuil_stock_alerte)).' '; - print $product_static->stock_reel; + print price2num($product_static->stock_reel, 'MS'); } print ''; if (!$i) $totalarray['nbfield']++; @@ -1302,7 +1302,7 @@ if ($resql) if ($obj->fk_product_type != 1) { if ($obj->seuil_stock_alerte != '' && $product_static->stock_theorique < (float) $obj->seuil_stock_alerte) print img_warning($langs->trans("StockLowerThanLimit", $obj->seuil_stock_alerte)).' '; - print $product_static->stock_theorique; + print price2num($product_static->stock_theorique, 'MS'); } print ''; if (!$i) $totalarray['nbfield']++;