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

101 lines
3.4 KiB
PHP
Executable File

<?php $this->titre = "INTER SANTE - Avenant Retrait Acte"; ?>
<input class="sr-only" type="text" id="idProduit" name="idProduit" value="<?= $this->nettoyer($produit['idProduit']) ?>" >
<legend> <?= _("AVENANT DE RETRAIT D'ACTES 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="filtregarantiesparcollege();" style="font-size:12pt; height:30px;" required AUTOCOMPLETE="OFF">
<?php liste_options($collegesPolice, "",false); ?>
</select>
</td>
</tr>
<tr>
<td width="7%" style='font-weight:bold; text-align:center;' class="required"> <?= _("Garantie") ?> </td>
<td >
<div id="div_garanties_college">
<select name="codeGarantie" id="codeGarantie" class="form-select"
onchange="filtreactecollegeretrait();" style="font-size:12pt; height:30px;" required AUTOCOMPLETE="OFF">
<?php liste_options($garanties, "",false); ?>
</select>
</div>
</td>
</tr>
</tbody>
</table>
<div id="div_garantieproduit">
<div class="row">
<div id="div_sans_seuil" class="col-6" >
<legend> <?= _("Actes à 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> <?= _("Actes Retirés") ?> </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>