90 lines
3.0 KiB
PHP
Executable File
90 lines
3.0 KiB
PHP
Executable File
<?php $this->titre = "INTER SANTE - Avenant Retrait Garantie"; ?>
|
|
|
|
<input class="sr-only" type="text" id="idProduit" name="idProduit" value="<?= $this->nettoyer($produit['idProduit']) ?>" >
|
|
|
|
|
|
|
|
<legend> <?= _("AVENANT DE RETRAIT DE GARANTIES 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'])) ?> </td>
|
|
<td> <?= dateLang($this->nettoyer($emission['dateEcheance'])) ?> </td>
|
|
<td> <?= $this->nettoyer($emission['dureePolice']) ?> </td>
|
|
|
|
<td> <?= dateLang($this->nettoyer($avenant['dateEffet'])) ?> </td>
|
|
<td> <?= dateLang($this->nettoyer($avenant['dateEcheance'])) ?> </td>
|
|
<td> <?= $this->nettoyer($avenant['dureeAvenant']) ?> </td>
|
|
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="table table-responsive table-condensed" style="font-size:10pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="7%" style='font-weight:bold; text-align:center;' class="required"> <?= _("Collège") ?> </td>
|
|
<td >
|
|
<select name="idCollegePolice" id="idCollegePolice" class="form-control selectpicker" data-live-search="true"
|
|
onchange="filtregarantiecollegeretrait();" style="font-size:12pt; height:30px;" required AUTOCOMPLETE="OFF">
|
|
<?php liste_options($collegesPolice, "",false); ?>
|
|
</select>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<div id="div_garantieproduit">
|
|
<div class="row">
|
|
<div id="div_sans_seuil" class="col-6" >
|
|
<legend> <?= _("Garanties à Retirer") ?> </legend>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
<tr>
|
|
<th style='text-align:center'> <?= _("Libellé") ?> </th>
|
|
<th width="20%" style='text-align:center'> => </th>
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
<div id="div_avec_seuil" class="col-6" >
|
|
<legend> <?= _("Garanties Retirées") ?> </legend>
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:10pt;">
|
|
<thead>
|
|
|
|
<tr>
|
|
<th width="10%" style='text-align:center'> <= </th>
|
|
<th style='text-align:center'> <?= _("Libellé") ?> </th>
|
|
</tr>
|
|
|
|
</thead>
|
|
|
|
<tbody>
|
|
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|