prestation/Vue/Spcollege/index.php
2025-12-05 10:42:46 +00:00

51 lines
1.8 KiB
PHP
Executable File

<?php $this->titre = "INTER-SANTE - Rapport S/P Collège"; ?>
<INPUT class="sr-only" TYPE="text" id="idCollege" name="idCollege" value="<?= $this->nettoyer($spcollege['idCollege']) ?>">
<legend><?= _("Rapport S / P du collège") ?> </legend>
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
<thead>
<tr>
<th width="25%" style='text-align:center'> <?= _("Date Effet") ?> </th>
<th width="25%" style='text-align:center'> <?= _("Date Echéance") ?> </th>
<th width="25%" style='text-align:center'> <?= _("Durée Acquise") ?> </th>
<th width="25%" style='text-align:center'> <?= _("Ratio Acquise") ?> </th>
</tr>
</thead>
<tbody>
<tr>
<td> <?= dateLang($this->nettoyer($spcollege['dateEffet'])) ?> </td>
<td> <?= dateLang($this->nettoyer($spcollege['dateEcheance'])) ?> </td>
<td> <?= $this->nettoyer($spcollege['duree_acquise']) ?> </td>
<td> <?= $this->nettoyer($spcollege['ratio_acquise']) ?> </td>
</tr>
</tbody>
</table>
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
<thead>
<tr>
<th width="25%" style='text-align:center'> <?= _("Primes Totales") ?> </th>
<th width="25%" style='text-align:center'> <?= _("Primes Acquises") ?> </th>
<th width="25%" style='text-align:center'> <?= _("Consommations") ?> </th>
<th width="25%" style='text-align:center'> <?= _("Rapport S/P") ?> </th>
</tr>
</thead>
<tbody>
<tr>
<td> <?= format_N($this->nettoyer($spcollege['primestat'])) ?> </td>
<td> <?= format_N($this->nettoyer($spcollege['prime_acquise'])) ?> </td>
<td> <?= format_N($this->nettoyer($spcollege['consommation'])) ?> </td>
<td> <?= $this->nettoyer($spcollege['rapportsp']) ?> </td>
</tr>
</tbody>
</table>