66 lines
3.0 KiB
PHP
Executable File
66 lines
3.0 KiB
PHP
Executable File
<?php
|
|
$this->titre = "INTER SANTE - Paramètres facturation produits garant";
|
|
$superUser = $_SESSION['superUser'];
|
|
$codeProduit = $_SESSION['codeProduit_C'];
|
|
?>
|
|
|
|
<div class="page-content animate__animated animate__fadeIn">
|
|
<div class="header-section mb-1">
|
|
<div class="d-flex align-items-center bg-white p-3 shadow-sm border-start border-primary border-4" style="border-radius: var(--radius-md);">
|
|
<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-boxes fs-4"></i>
|
|
</div>
|
|
<div>
|
|
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase"><?= _("Facturation Produit Garant") ?></h4>
|
|
<p class="text-muted small mb-0 d-none d-md-block">
|
|
<span class="badge bg-light text-primary border fw-bold"><?= $_SESSION['nomGcAssureur_C'] ?></span>
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<input type="hidden" id="nomForm" name="nomForm" value="Paramfacproduit">
|
|
|
|
<div class="card border-0 shadow-sm mb-1">
|
|
<div class="card-body p-4 bg-primary-ghost-light">
|
|
<div class="row align-items-center">
|
|
<div class="col-md-1 text-md-end">
|
|
<label class="form-label mb-md-0 fw-bold text-uppercase small text-primary"><?= _("Produit") ?></label>
|
|
</div>
|
|
<div class="col-md-11">
|
|
<div class="input-group shadow-sm">
|
|
<span class="input-group-text bg-white border-end-0"><i class="fas fa-cube text-primary"></i></span>
|
|
<select class="form-control selectpicker border-start-0 w-100"
|
|
data-live-search="true"
|
|
id="codeProduit"
|
|
name="codeProduit"
|
|
onchange="parametre_produit();"
|
|
autofocus>
|
|
<?php liste_options($produits, $codeProduit); ?>
|
|
</select>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<div id="div_parametres" class="animate__animated animate__fadeInUp">
|
|
<div class="text-center p-5 text-muted opacity-50">
|
|
<i class="fas fa-hand-pointer fa-3x mb-3"></i>
|
|
<p><?= _("Veuillez sélectionner un produit pour afficher ses paramètres de facturation.") ?></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<style>
|
|
.bg-primary-ghost { background-color: rgba(33, 46, 83, 0.08) !important; }
|
|
.bg-primary-ghost-light { background-color: rgba(33, 46, 83, 0.02) !important; }
|
|
|
|
/* Style pour le selectpicker personnalisé */
|
|
.bootstrap-select .btn {
|
|
border-width: 2px !important;
|
|
padding-top: 8px !important;
|
|
padding-bottom: 8px !important;
|
|
}
|
|
</style>
|