Skip to content
Snippets Groups Projects
Commit 865d739d authored by Matthieu Guffroy's avatar Matthieu Guffroy
Browse files

Merge branch 'master' of gitlab.utc.fr:nf17-camp-p14/clivi

parents 3f97286c 5483b5cd
No related branches found
No related tags found
No related merge requests found
......@@ -4,9 +4,12 @@ class LigneFactureOrdonnance extends LigneFacture
{
public $_specialFields = array(
"prestation" => array(
"it" => -1
"i" => -1
),
"produit" => array(
"i" => -1
),
"quantite" => array(
"i" => -1
));
}
\ No newline at end of file
......@@ -4,10 +4,13 @@ class LigneFacturePrestation extends LigneFacture
{
public $_specialFields = array(
"ordonnance" => array(
"it" => -1
"i" => -1
),
"produit" => array(
"i" => -1
),
"quantite" => array(
"i" => -1
));
}
\ No newline at end of file
......@@ -4,7 +4,7 @@ class LigneFactureProduit extends LigneFacture
{
public $_specialFields = array(
"ordonnance" => array(
"it" => -1
"i" => -1
),
"prestation" => array(
"i" => -1
......
......@@ -8,19 +8,19 @@
<table class="table">
<thead>
<th>Nombre de client : </th>
<th><?php $tmp = $stats->nbClient(); $nb_formated = number_format($tmp["nb"], 2, ',', ' '); echo $nb_formated; ?></th>
<th><?php $tmp = $stats->nbClient(); $nb_formated = number_format($tmp["nb"]); echo $nb_formated; ?></th>
</thead>
<thead>
<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>
<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>
<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>
<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