85 lines
4.0 KiB
PHP
85 lines
4.0 KiB
PHP
<section class="pcoded-content">
|
|
<!-- Breadcrumb Start -->
|
|
<!-- Breadcrumb End -->
|
|
|
|
<!-- Main Content -->
|
|
<div class="pcoded-inner-content">
|
|
<div class="main-body page-wrapper">
|
|
<!-- Search Filters -->
|
|
<div class="card mb-4">
|
|
<form action="#" method="GET" id="form_search" onsubmit="showOverlay()">
|
|
<div class="row g-3 p-3">
|
|
<!-- Garant -->
|
|
<div class="col-md-6">
|
|
<label for="nomGarant" class="form-label font-weight-bold"><?= _("Garant"); ?></label>
|
|
<input
|
|
type="text"
|
|
class="form-control"
|
|
id="nomGarant"
|
|
name="nomGarant"
|
|
value="<?= ($_SESSION['GcAssureur_C']); ?>"
|
|
disabled>
|
|
</div>
|
|
|
|
<!-- Souscripteur -->
|
|
<div class="col-md-6">
|
|
<label for="idSouscripteur" class="form-label font-weight-bold"><?= _("Souscripteur"); ?></label>
|
|
<select class="form-control js-select2" id="idSouscripteur" name="idSouscripteur">
|
|
<?php liste_options_consultation($listesouscripteur, ""); ?>
|
|
</select>
|
|
</div>
|
|
|
|
<!-- Recherche Police -->
|
|
<div class="col-md-6">
|
|
<label for="numeroPolice" class="form-label font-weight-bold"><?= _("Recherche Police"); ?></label>
|
|
<input type="text" class="form-control" id="numeroPolice" name="numeroPolice" placeholder="Rechercher par numéro de police ou numéro de client...">
|
|
</div>
|
|
|
|
<!-- Etat Police -->
|
|
<div class="col-md-6">
|
|
<label for="codeEtatPolice" class="form-label font-weight-bold"><?= _("État Police"); ?></label>
|
|
<select class="form-control js-select2" id="codeEtatPolice" name="codeEtatPolice">
|
|
<?php liste_options_consultation($etat, ""); ?>
|
|
</select>
|
|
</div>
|
|
|
|
<!-- Date d'effet -->
|
|
<div class="col-md-6">
|
|
<label for="dateEffet" class="form-label font-weight-bold"><?= _("Date d'effet"); ?></label>
|
|
<input
|
|
type="date"
|
|
class="form-control"
|
|
id="dateEffet"
|
|
name="dateEffet">
|
|
</div>
|
|
|
|
<!-- Date d'échéance -->
|
|
<div class="col-md-6">
|
|
<label for="dateEcheance" class="form-label font-weight-bold"><?= _("Date d'échéance"); ?></label>
|
|
<input
|
|
type="date"
|
|
class="form-control"
|
|
id="dateEcheance"
|
|
name="dateEcheance">
|
|
</div>
|
|
</div>
|
|
|
|
<!-- Bouton de validation -->
|
|
<div class="d-grid">
|
|
<button
|
|
type="submit"
|
|
class="btn btn-primary"
|
|
onclick="afficher_Police();">
|
|
<?= _("Valider"); ?>
|
|
</button>
|
|
</div>
|
|
</form>
|
|
|
|
</div>
|
|
|
|
<!-- Résultat -->
|
|
<div id="div_Police"></div>
|
|
</div>
|
|
</div>
|
|
</section>
|