27 lines
1.2 KiB
PHP
Executable File
27 lines
1.2 KiB
PHP
Executable File
<div id="div_detail_sp">
|
|
|
|
<input style='text-align:center; font-size:11pt; background-color:blue;color:white;' class="form-control" type="text" value="<?= _("RAPPORT S / P POLICE ENTIERE") ?>" disabled >
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
|
|
<thead>
|
|
<tr>
|
|
<th width="20%" style='text-align:center'> <?= _("Primes Totales") ?> </th>
|
|
<th width="20%" style='text-align:center'> <?= _("Primes Acquises") ?> </th>
|
|
<th width="20%" style='text-align:center'> <?= _("Consommations") ?> </th>
|
|
<th width="20%" style='text-align:center'> <?= _("Rapport S/P") ?> </th>
|
|
<th width="20%" style='text-align:center'> <?= _("S/P Global") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<tr>
|
|
<td> <?= format_N($this->nettoyer($sppolice['primestat'])) ?> </td>
|
|
<td> <?= format_N($this->nettoyer($sppolice['prime_acquise'])) ?> </td>
|
|
<td> <?= format_N($this->nettoyer($sppolice['consommation'])) ?> </td>
|
|
<td> <?= $this->nettoyer($sppolice['rapportsp']) ?> </td>
|
|
<td> <?= $this->nettoyer($sppolice['rapportspgeneral']) ?> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|