48 lines
1.6 KiB
PHP
48 lines
1.6 KiB
PHP
<?php ?>
|
|
|
|
<legend>RAPPORT S / P DE LA Famille : <?= $this->nettoyer($_SESSION['numeroAdherent_C'])?> </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 ECHEANCE</th>
|
|
<th width="25%" style='text-align:center'>DUREE ACQUISE</th>
|
|
<th width="25%" style='text-align:center'>RATIO ACQUISE</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td> <?= dateFr($this->nettoyer($spadherent['dateEffet'])) ?> </td>
|
|
<td> <?= dateFr($this->nettoyer($spadherent['dateEcheance'])) ?> </td>
|
|
<td> <?= $this->nettoyer($spadherent['duree_acquise']) ?> </td>
|
|
<td> <?= $this->nettoyer($spadherent['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 TOTALE</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($spadherent['primestat'])) ?> </td>
|
|
|
|
<td> <?= format_N($this->nettoyer($spadherent['prime_acquise'])) ?> </td>
|
|
|
|
<td> <?= format_N($this->nettoyer($spadherent['consommation'])) ?> </td>
|
|
|
|
<td> <?= $this->nettoyer($spadherent['rapportsp']) ?> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|