95 lines
3.7 KiB
PHP
95 lines
3.7 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - Récap résiliation";
|
|
$nbFactAntiDate = $this->nettoyer($avenant['nbFactAntiDate']);
|
|
?>
|
|
|
|
<INPUT class="sr-only" id="tauxRistourne" NAME="tauxRistourne" TYPE="text" value="<?= $this->nettoyer($avenant['tauxRistourne']) ?>" >
|
|
<button type="button" style='font-size:10pt;' class="sr-only" onclick="javascript:appliquer_taux_ristourne();" > </button>
|
|
|
|
<button id="btn_pop" NAME="btn_pop" type="button" class="sr-only" data-bs-toggle="modal" data-bs-target="#popdetailassure"> </button>
|
|
|
|
<legend> <?= _("RECAPITULATIF RETRAIT ASSURES DE LA POLICE") . " : " . $this->nettoyer($_SESSION['numeroPolice_C'])?> </legend>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:9pt; text-align:center'>
|
|
<thead>
|
|
<tr>
|
|
<th width="16%" style='text-align:center'> <?= _("Date Effet Police") ?> </th>
|
|
<th width="16%" style='text-align:center'> <?= _("Date Echéance Police") ?> </th>
|
|
<th width="16%" style='text-align:center'> <?= _("Durée Police") ?> </th>
|
|
|
|
<th width="16%" style='text-align:center'> <?= _("Date Effet Avenant") ?> </th>
|
|
<th width="16%" style='text-align:center'> <?= _("Date Echéance Avenant") ?> </th>
|
|
<th width="20%" style='text-align:center'> <?= _("Durée Avenant") ?> </th>
|
|
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
<tr>
|
|
<td> <?= dateLang($this->nettoyer($emission['dateEffet']), $_SESSION['lang']) ?> </td>
|
|
<td> <?= dateLang($this->nettoyer($emission['dateEcheance']), $_SESSION['lang']) ?> </td>
|
|
<td> <?= $this->nettoyer($emission['dureePolice']) ?> </td>
|
|
|
|
<td> <?= dateLang($this->nettoyer($avenant['dateEffet']), $_SESSION['lang']) ?> </td>
|
|
<td> <?= dateLang($this->nettoyer($avenant['dateEcheance']), $_SESSION['lang']) ?> </td>
|
|
<td> <?= $this->nettoyer($avenant['dureeAvenant']) ?> </td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:9pt; 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'> TOTAL </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['tauxRistourne']) ?> </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<legend> <?= _("DETAIL PRIMES A RISTOURNER") ?> </legend>
|
|
|
|
<div id="div_assure_a_retirer">
|
|
<?php include 'Vue/Ajaxdetailretrait/index.php'; ?>
|
|
</div>
|
|
|
|
|
|
<div class="modal fade modal-office" id="popdetailassure" role="dialog" data-bs-backdrop="static" data-bs-keyboard="false">
|
|
<div class="modal-dialog modal-lg">
|
|
<div class="modal-content modal-office">
|
|
|
|
<div class="modal-header">
|
|
<h5 class="modal-title" id="popdetailassureLabel"><?= _("Détail retrait") ?></h5>
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="<?= _("Fermer") ?>"></button>
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
<div id="div_selection_assure"></div>
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal"><?= _("Fermer") ?></button>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|