diff --git a/htdocs/comm/index.php b/htdocs/comm/index.php
index fcb94392405..49f618a4dd5 100644
--- a/htdocs/comm/index.php
+++ b/htdocs/comm/index.php
@@ -184,6 +184,10 @@ if (! empty($conf->propal->enabled) && $user->rights->propal->lire)
print '
| '.$langs->trans("Total").' | '.price($total)." |
";
}
}
+ else
+ {
+ print '| '.$langs->trans("NoProposal").' |
';
+ }
print "
";
$db->free($resql);
@@ -259,6 +263,10 @@ if (! empty($conf->commande->enabled) && $user->rights->commande->lire)
print '| '.$langs->trans("Total").' | '.price($total)." |
";
}
}
+ else
+ {
+ print '| '.$langs->trans("NoOrder").' |
';
+ }
print "
";
$db->free($resql);
@@ -335,6 +343,10 @@ if (! empty($conf->fournisseur->enabled) && $user->rights->fournisseur->commande
print '| '.$langs->trans("Total").' | '.price($total)." |
";
}
}
+ else
+ {
+ print '| '.$langs->trans("NoSupplierOrder").' |
';
+ }
print "
";
$db->free($resql);