30 lines
1.2 KiB
PHP
Executable File
30 lines
1.2 KiB
PHP
Executable File
<?php $this->titre = "INTER-SANTE - Polices non renouvellées"; ?>
|
|
|
|
<div id="div_detail_requete">
|
|
<legend> <?= _("Polices non renouvellées") ?> </legend>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th width="40%" > <?= _("Souscripteur") ?> </th>
|
|
<th style='text-align:center'> <?= _("No Client") ?> </th>
|
|
<th style='text-align:center'> <?= _("Police") ?> </th>
|
|
<th style='text-align:center'> <?= _("Effet") ?> </th>
|
|
<th style='text-align:center'> <?= _("Echéance") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($rapportsps as $rapportsp):
|
|
?>
|
|
|
|
<tr valign="top">
|
|
<td ><?= $this->nettoyer($rapportsp['nomClient']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($rapportsp['numeroClient']) ?></td>
|
|
<td align='center'><?= $this->nettoyer($rapportsp['numeroPolice']) ?></td>
|
|
<td align='center'><?= dateLang($this->nettoyer($rapportsp['dateEffet'])) ?></td>
|
|
<td align='center'><?= dateLang($this->nettoyer($rapportsp['dateEcheance'])) ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|