Skip to content
Snippets Groups Projects
Commit de1cd8ff authored by cortylal's avatar cortylal
Browse files

stats

parent 5f2406f9
No related branches found
No related tags found
No related merge requests found
...@@ -12,15 +12,15 @@ ...@@ -12,15 +12,15 @@
</thead> </thead>
<thead> <thead>
<th>Nombre d'employé' : </th> <th>Nombre d'employé' : </th>
<th><?php $tmp = $stats->nbEmploye(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th> <th><?php $tmp = $stats->nbEmploye(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th>
</thead> </thead>
<thead> <thead>
<th>Nombre de vétérinaire' : </th> <th>Nombre de vétérinaire' : </th>
<th><?php $tmp = $stats->nbVeterinaire(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th> <th><?php $tmp = $stats->nbVeterinaire(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th>
</thead> </thead>
<thead> <thead>
<th>Nombre d'animaux : </th> <th>Nombre d'animaux : </th>
<th><?php $tmp = $stats->nbAnimaux(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th> <th><?php $tmp = $stats->nbAnimaux(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th>
</thead> </thead>
<thead> <thead>
<th>Nombre moyen d'animal par client : </th> <th>Nombre moyen d'animal par client : </th>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment