32 lines
1.4 KiB
PHP
32 lines
1.4 KiB
PHP
<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 PAR CATEGORIE") ?>" disabled >
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
|
|
<thead>
|
|
<tr>
|
|
<th width="10%" style='text-align:center'>Cat</th>
|
|
<th width="18%" style='text-align:center'> <?= _("Primes Totales") ?> </th>
|
|
<th width="18%" style='text-align:center'> <?= _("Primes Acquises") ?> </th>
|
|
<th width="18%" style='text-align:center'> <?= _("Consommations") ?> </th>
|
|
<th width="18%" style='text-align:center'> <?= _("Rapport S/P") ?> </th>
|
|
<th width="18%" style='text-align:center'> <?= _("S/P Global") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($sppolices as $sppolice):
|
|
?>
|
|
<tr valign="top">
|
|
<td> <?= $this->nettoyer($sppolice['codeProduit']) ?> </td>
|
|
<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>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|