production/Vue/Ficherenouvellement/index.php
2025-12-01 16:12:12 +00:00

69 lines
2.1 KiB
PHP
Executable File

<?php $this->titre = "INTER SANTE - Récap Renouvellement"; ?>
<button id="btn_pop" NAME="btn_pop" type="button" class="sr-only" data-bs-toggle="modal" data-bs-target="#popdetailassure"></button>
<INPUT class="sr-only" TYPE="text" id="nomForm" NAME="nomForm" value="frmficherenouvellement" readonly>
<legend> <?= _("RECAPITULATIF RENOUVELLEMENT POLICE") . " : " . $this->nettoyer($_SESSION['numeroPolice_C'])?> </legend>
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
<thead>
<tr>
<th width="34%" style='text-align:center'> <?= _("Date Effet Avenant") ?> </th>
<th width="33%" style='text-align:center'> <?= _("Date Echéance Avenant") ?> </th>
<th width="33%" style='text-align:center'> <?= _("Durée Avenant") ?> </th>
</tr>
</thead>
<tbody>
<tr>
<td> <?= dateLang($this->nettoyer($avenant['dateEffet'])) ?> </td>
<td> <?= dateLang($this->nettoyer($avenant['dateEcheance'])) ?> </td>
<td> <?= $this->nettoyer($avenant['dureeAvenant']) ?> </td>
</tr>
</tbody>
</table>
<legend> <?= _("SITUATION AVANT RENOUVELLEMENT") ?></legend>
<table class="table table-responsive table-condensed" style='font-size:10pt; text-align:center'>
<thead>
<tr>
<th width="34%" style='text-align:center'> <?= _("PRIMES STAT TOTALE") ?> </th>
<th width="33%" style='text-align:center'> <?= _("Consommations") ?> </th>
<th width="33%" style='text-align:center'> <?= _("Rapport S/P") ?> </th>
</tr>
</thead>
<tbody>
<tr>
<td> <?= format_N($this->nettoyer($sppolice['primestat'])) ?> </td>
<td> <?= format_N($this->nettoyer($sppolice['consommation'])) ?> </td>
<td> <?= $this->nettoyer($sppolice['rapportsp']) ?> </td>
</tr>
</tbody>
</table>
<legend> <?= _("DETAIL PRIMES A EMETTRE") ?> </legend>
<div id="div_prime_a_emettre">
<?php
require('Vue/Ajaxdetailrenouvellement/detailprimeaemettre.php');
?>
</div>
<div id="div_patienter">
</div>
<div id="div_detail_renouvellement" class="modal fade">
</div>