Skip to content
Snippets Groups Projects
Commit ff8b42c5 authored by clement's avatar clement
Browse files

correction

parent 928fff22
No related branches found
No related tags found
No related merge requests found
......@@ -13,7 +13,7 @@ if(!in_array($action, $actions)) {
switch($action) {
case "listeFact":
$listArray = Employe::getAll();
$listArray = Facture::getAll();
$listParams = array("title" => "Liste des factures",
"keys" => array("id", "employe", "animal", "dateEdition", "datePaiement", "moyenPaiement", "prixTotal"));
include 'view/list.php';
......
......@@ -13,7 +13,7 @@ if(!in_array($action, $actions)) {
switch($action) {
case "listeOrd":
$listArray = Employe::getAll();
$listArray = Ordonnance::getAll();
$listParams = array("title" => "Liste des ordonnances",
"keys" => array("id", "animal", "veterinaire", "date", "prix"));
include 'view/list.php';
......
......@@ -13,7 +13,7 @@ if(!in_array($action, $actions)) {
switch($action) {
case "listeRdv":
$listArray = Employe::getAll();
$listArray = Rdv::getAll();
$listParams = array("title" => "Liste des rendez-vous",
"keys" => array("id", "animal", "veterinaire", "date", "duree"));
include 'view/list.php';
......
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