newdesigngestionnaire/Vue/Tableauajustementprimesgarant/index.php
2026-04-13 16:53:52 +00:00

60 lines
3.0 KiB
PHP
Executable File

<div class="page-content animate__animated animate__fadeIn">
<div class="header-section mb-1">
<div class="d-flex align-items-center justify-content-between bg-white p-3 shadow-sm border-start border-primary border-4" style="border-radius: var(--radius-md);">
<div class="d-flex align-items-center">
<div class="icon-shape bg-primary-ghost text-primary rounded-circle me-3" style="width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-chart-bar fs-4"></i>
</div>
<div>
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase"><?= _("Taux d'ajustement Garant") ?></h4>
<p class="text-muted small mb-0"><?= _("Gestion des taux d'ajustement S/P spécifiques par Garant") ?></p>
</div>
</div>
<div class="d-flex gap-2">
<input class="sr-only" type="text" id="nomForm" name="nomForm" value="frmtauxAjustementgarant">
</div>
</div>
</div>
<div class="card border-0 shadow-sm mb-4">
<div class="card-body p-3 bg-primary-ghost-light">
<div class="row align-items-center g-3">
<div class="col-md-1 text-md-end">
<label class="form-label mb-md-0 fw-bold small text-muted text-uppercase"><?= _("Garant") ?></label>
</div>
<div class="col-md-11">
<div class="input-group">
<span class="input-group-text bg-white border-end-0"><i class="fas fa-shield-alt text-primary"></i></span>
<select class="form-control selectpicker border-start-0 w-100"
data-live-search="true"
id="codeGcAssureur"
name="codeGcAssureur"
onchange="javascript:afficher_tauxajustement_garant();"
autofocus>
<?php liste_options($garant, "", false); ?>
</select>
</div>
</div>
</div>
</div>
</div>
<div id="div_entete_table" class="mb-2 animate__animated animate__fadeIn"></div>
<div id="div_maj_table" class="mb-3 animate__animated animate__fadeIn"></div>
<div id="div_lister_table" class="animate__animated animate__fadeIn">
<div class="text-center p-5 opacity-50 bg-white rounded shadow-sm border">
<i class="fas fa-search-dollar fa-3x mb-3 text-primary"></i>
<p class="fw-bold mb-0 text-muted"><?= _("Sélectionnez un garant pour consulter sa grille d'ajustement.") ?></p>
</div>
</div>
</div>
<style>
/* Harmonisation Selectpicker */
.bootstrap-select .dropdown-toggle {
border-color: #dee2e6 !important;
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}
</style>