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

correction

parent 0e21b7db
No related branches found
No related tags found
No related merge requests found
......@@ -15,7 +15,7 @@ switch($action) {
case "listeAnimal":
$listArray = Animal::getAll();
$listParams = array("title" => "Liste des animaux de la clinique",
"keys" => array("nom", "proprio", "race", "poids", "genre", "sterile", "date_naissance", "date_deces", "taille", "code"));
"keys" => array("nom", "proprio", "race", "poids", "genre", "sterile", "dateNaissance", "dateDeces", "taille", "code"));
include 'view/list.php';
break;
case "addAnimal":
......
......@@ -15,7 +15,7 @@ switch($action) {
case "listeFact":
$listArray = Employe::getAll();
$listParams = array("title" => "Liste des factures",
"keys" => array("id", "employe", "animal", "date_edition", "date_paiement", "moyen_paiement", "prix_total"));
"keys" => array("id", "employe", "animal", "dateEdition", "datePaiement", "moyenPaiement", "prixTotal"));
include 'view/list.php';
break;
case "addFact":
......
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