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

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

parents 0a992a83 7f14b615
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