ajout liste gestion fiche

This commit is contained in:
Theo 2024-01-09 13:04:51 +01:00
parent aa49401a47
commit 63eddbbc8b
3 changed files with 43 additions and 22 deletions

View File

@ -18,9 +18,20 @@ class Class_gestionFiche
return $result->fetchAll(); return $result->fetchAll();
} }
public function utilisateur(string $idUtilisateur): array public function get_ListesFiches(string $idUtilisateur): array
{ {
$req = ''; $req = 'SELECT "rMois", "rEtat","rNbJustificatifs","rMontantValide","eLibelle"
FROM remboursement
INNER JOIN etat ON etat."eId"=remboursement."rEtat"
WHERE "rVisiteur"= :userId
ORDER BY "rMois" DESC';
$result = $this->pdo->prepare($req);
$result ->bindParam("userId", $idUtilisateur);
$result ->execute();
return $result->fetchAll();
} }
} }

View File

@ -4,6 +4,10 @@ $_SESSION ["typeU"] = "comptable";
require_once(__DIR__ . '/../Class/class.gestionFiche.php'); require_once(__DIR__ . '/../Class/class.gestionFiche.php');
$gestionFiche = new Class_gestionFiche($pdo); $gestionFiche = new Class_gestionFiche($pdo);
$userId = $_SESSION ['uId'];
$LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS $LesUtilisateurs = $gestionFiche->getLesUtilisateurs(); //RENVOIE LISTE USERS
$lesFiches = $gestionFiche->get_ListesFiches($userId);
include("vues/v_gestionFiches.php"); include("vues/v_gestionFiches.php");

View File

@ -5,6 +5,11 @@
if ($_SESSION['typeU'] != 'comptable') { if ($_SESSION['typeU'] != 'comptable') {
echo '<h3>Gérer mes fiches de frais</h3>'; echo '<h3>Gérer mes fiches de frais</h3>';
} else { } else {
/**
* Mettre dans un formulaire
* action: index.php?direction=gestionFiche
* method: get
*/
echo '<h3>Gérer les fiches de frais de :</h3>'; echo '<h3>Gérer les fiches de frais de :</h3>';
echo '<select class="form-select" name="selVisiteur" id="">'; echo '<select class="form-select" name="selVisiteur" id="">';
foreach ($LesUtilisateurs as $key => $value) { foreach ($LesUtilisateurs as $key => $value) {
@ -14,9 +19,12 @@
echo '<option value="' . $id . '">' . $nom . " " . $prenom . "</option>"; echo '<option value="' . $id . '">' . $nom . " " . $prenom . "</option>";
} }
echo '</select>'; echo '</select>'; ?>
} <button type="submit">Envoyer</button>
<!-- Fin du formulaire -->
<?php }
?> ?>
</div> </div>
</center> </center>
@ -32,24 +40,22 @@
</tr> </tr>
</thead> </thead>
<tbody> <tbody>
<tr> <?php foreach ($lesFiches as $uneFiche) { ?>
<th scope="row">Novembre</th> <tr>
<td>351 </td> <th scope="row">
<td>en cours...</td> <?= $uneFiche['rMois'] ?>
<td><a href="#">voir</a></td> </th>
</tr> <td>
<tr> <?= $uneFiche['rMontantValide'] ?>
<th scope="row">Octobre</th> </td>
<td>1458 </td> <td>
<td>en cours...</td> <?= $uneFiche['eLibelle'] ?>
<td><a href="#">voir</a></td> </td>
</tr> <td><a
<tr> href="controleurs\c_nouvelleFiche.php?userId=<?= $userId ?>&dateListing=<?= $uneFiche['rMois'] ?>">voir</a>
<th scope="row">Septembre</th> </td>
<td>1112 </td> </tr>
<td>classé</td> <?php } ?>
<td><a href="#">voir</a></td>
</tr>
</tbody> </tbody>
</table> </table>
</div> </div>