44 lines
2.1 KiB
PHP
Executable File
44 lines
2.1 KiB
PHP
Executable File
<div class="card-footer" id="preview">
|
|
<h5>
|
|
<span class="badge bg-info"><?= count($prestation) ?></span> Prestation(s) trouvée(s)
|
|
</h5>
|
|
<div class="table-responsive mt-3">
|
|
<table class="table table-bordered table-hover">
|
|
<thead>
|
|
<tr class="text-center fw-bold">
|
|
<th>Date</th>
|
|
<th>Prestataire</th>
|
|
<th>Acte</th>
|
|
<th>Médecin</th>
|
|
<th>P U</th>
|
|
<th>Qté</th>
|
|
<th>PT</th>
|
|
<th>TM</th>
|
|
<th>M TM</th>
|
|
<th>A Remb</th>
|
|
<th>Dépass</th>
|
|
<th>Motif</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php foreach ($prestation as $prestation): ?>
|
|
<tr>
|
|
<td class="text-center"><?= $this->nettoyer($prestation['datePrestation']) ?></td>
|
|
<td><?= $this->nettoyer($prestation['codePrestataire']) ?></td>
|
|
<td class="text-center"><?= $this->nettoyer($prestation['prixTarif']) ?></td>
|
|
<td><?= $this->nettoyer($prestation['codeMedecin']) ?></td>
|
|
<td><?= $this->nettoyer($prestation['quantite']) ?></td>
|
|
<td><?= $this->nettoyer($prestation['codeGarantie']) ?></td>
|
|
<td class="text-center"><?= $this->nettoyer($prestation['prixBase']) ?></td>
|
|
<td class="text-end"><?= $this->nettoyer($prestation['montantArembourser']) ?></td>
|
|
<td class="text-end"><?= $this->nettoyer($prestation['debut']) ?></td>
|
|
<td class="text-end"><?= $this->nettoyer($prestation['codeTarifActe']) ?></td>
|
|
<td class="text-end"><?= $this->nettoyer($prestation['debut']) ?></td>
|
|
<td class="text-end"><?= $this->nettoyer($prestation['fin']) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|