97 lines
4.9 KiB
PHP
97 lines
4.9 KiB
PHP
<?php
|
|
$this->titre = "INTER-SANTE - ASSURANCE MALADIE INDIVIDUELLE";
|
|
?>
|
|
|
|
<div id="div_familiale" class="container-fluid py-4 animate__animated animate__fadeIn">
|
|
|
|
<div class="d-flex align-items-center mb-4">
|
|
<div class="bg-office-primary p-3 rounded-circle text-white shadow-sm me-3">
|
|
<i class="fas fa-user-shield fa-lg"></i>
|
|
</div>
|
|
<div>
|
|
<h4 class="fw-bold mb-0 text-dark"><?= _("ASSURANCE MALADIE INDIVIDUELLE") ?></h4>
|
|
<span class="badge bg-warning text-dark border shadow-sm">
|
|
<i class="fas fa-exclamation-triangle me-1"></i>
|
|
<?= _("Primes non facturées") ?> : <strong><?= format_N($nb_non_facturees) ?></strong>
|
|
</span>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="card shadow-sm border-0 mb-4" id="div_entete_apporteur" onkeypress="javascript:ctrlkeypress_rechercher_commercail_type_familiale(event);">
|
|
<div class="card-header bg-light py-3 border-bottom-0">
|
|
<h6 class="mb-0 fw-bold text-secondary text-uppercase small">
|
|
<i class="fas fa-search me-2"></i><?= _("Filtres de recherche") ?>
|
|
</h6>
|
|
</div>
|
|
<div class="card-body p-4">
|
|
<div class="row g-4 align-items-end">
|
|
<div class="col-md-4">
|
|
<label for="codeTypeApporteur" class="form-label fw-bold small text-primary"><?= _("Type d'apporteur") ?></label>
|
|
<div class="input-group">
|
|
<span class="input-group-text bg-white"><i class="fas fa-filter text-muted"></i></span>
|
|
<select class="form-select border-start-0" id="codeTypeApporteur" name="codeTypeApporteur" autofocus>
|
|
<?php liste_options_consultation($typeapporteurs, ""); ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<label for="libelleApporteur" class="form-label fw-bold small text-primary"><?= _("Nom du Commercial") ?></label>
|
|
<div class="input-group">
|
|
<span class="input-group-text bg-white"><i class="fas fa-user text-muted"></i></span>
|
|
<input type="text" class="form-control border-start-0" id="libelleApporteur" name="libelleApporteur" placeholder="<?= _("Saisissez un nom...") ?>">
|
|
</div>
|
|
</div>
|
|
|
|
<div class="col-md-4">
|
|
<div class="row g-2">
|
|
<div class="col-6">
|
|
<button type="button" class="btn btn-primary w-100 shadow-sm fw-bold py-2" onClick="javascript:rechercher_commercail_type_familiale();">
|
|
<i class="fas fa-search me-2"></i><?= _("Filtrer") ?>
|
|
</button>
|
|
</div>
|
|
<div class="col-6">
|
|
<button type="button" class="btn btn-outline-secondary w-100 shadow-sm fw-bold py-2" onClick="javascript:rechercher_commercail_type_familiale_tous();">
|
|
<i class="fas fa-globe me-2"></i><?= _("Tous") ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="div_detail_apporteur" class="mt-4">
|
|
<div class="d-flex align-items-center mb-3 border-bottom pb-2">
|
|
<i class="fas fa-list me-2 text-secondary"></i>
|
|
<h5 class="mb-0 fw-bold text-secondary text-uppercase small"><?= _("Liste des Commerciaux") ?></h5>
|
|
</div>
|
|
<div class="text-center py-5 text-muted">
|
|
<i class="fas fa-info-circle me-1"></i> <?= _("Utilisez les filtres ci-dessus pour afficher les commerciaux.") ?>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<button class="sr-only" id="btn_exporter" name="btn_exporter" type="button" data-toggle="modal" data-target="#pop_exporter"></button>
|
|
|
|
<div class="modal fade" id="pop_exporter" tabindex="-1" role="dialog" aria-hidden="true">
|
|
<div class="modal-dialog modal-lg modal-dialog-centered">
|
|
<div class="modal-content border-0 shadow-lg">
|
|
<div class="modal-header bg-office-blue text-white">
|
|
<h5 class="modal-title">
|
|
<i class="fas fa-file-export me-2"></i><?= _("Exportation des données") ?>
|
|
</h5>
|
|
<button type="button" class="btn-close btn-close-white" data-dismiss="modal" aria-label="Close"></button>
|
|
</div>
|
|
<div class="modal-body p-0">
|
|
<div id="div_export_apporteur" class="p-4">
|
|
</div>
|
|
</div>
|
|
<div class="modal-footer bg-light">
|
|
<button type="button" class="btn btn-secondary shadow-sm" data-dismiss="modal">
|
|
<i class="fas fa-times me-2"></i><?= _("Fermer") ?>
|
|
</button>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|