diff --git a/htdocs/fourn/product/fiche.php b/htdocs/fourn/product/fiche.php
index ca045e6a2bb..762f430a1a4 100644
--- a/htdocs/fourn/product/fiche.php
+++ b/htdocs/fourn/product/fiche.php
@@ -387,7 +387,7 @@ else
{
if ($product->stock_reel <= $product->seuil_stock_alerte)
{
- print '
'.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
+ print ' | '.img_warning().' '.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
}
else
{
diff --git a/htdocs/livraison/fiche.php b/htdocs/livraison/fiche.php
index 066cb931f83..9141e74c7b3 100644
--- a/htdocs/livraison/fiche.php
+++ b/htdocs/livraison/fiche.php
@@ -313,7 +313,7 @@ if ($_GET["action"] == 'create')
// Stock
if ($stock < $quantite_a_livrer)
{
- print ' | '.$stock.' | ';
+ print ''.$stock.' '.img_alerte().' | ';
}
else
{
diff --git a/htdocs/product/fiche.php b/htdocs/product/fiche.php
index 43b240a4cbe..5f937ec7787 100644
--- a/htdocs/product/fiche.php
+++ b/htdocs/product/fiche.php
@@ -742,7 +742,7 @@ if ($_GET["id"] || $_GET["ref"])
{
if ($product->stock_reel <= $product->seuil_stock_alerte)
{
- print ''.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
+ print ' | '.img_warning().' '.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
}
else
{
diff --git a/htdocs/product/stats/fiche.php b/htdocs/product/stats/fiche.php
index fb7cf539c60..926024cd33b 100644
--- a/htdocs/product/stats/fiche.php
+++ b/htdocs/product/stats/fiche.php
@@ -112,7 +112,7 @@ if ($_GET["id"] || $_GET["ref"])
{
if ($product->stock_reel <= $product->seuil_stock_alerte)
{
- print ' | '.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
+ print ' | '.img_warning().' '.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
}
else
{
diff --git a/htdocs/product/stock/product.php b/htdocs/product/stock/product.php
index 10189f53297..3fde7855cd3 100644
--- a/htdocs/product/stock/product.php
+++ b/htdocs/product/stock/product.php
@@ -149,7 +149,7 @@ if ($_GET["id"] || $_GET["ref"])
{
if ($product->stock_reel <= $product->seuil_stock_alerte)
{
- print ' | '.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
+ print ' | '.img_warning().' '.$product->stock_reel.' Seuil : '.$product->seuil_stock_alerte;
}
else
{
|