This commit is contained in:
KONE SOREL 2026-03-02 08:55:46 +00:00
parent 53d396b083
commit 9cbaee23ef
2 changed files with 149 additions and 327 deletions

View File

@ -1407,4 +1407,4 @@ select[class*="selectpicker"],
/* Ajustement des icônes pour plus de finesse */
.icon-shape {
flex-shrink: 0;
}
}

View File

@ -1,335 +1,157 @@
<?php $this->titre = "INTER SANTE - Modifier Paramètres Généraux de la Production"; ?>
<?php //$this->titre = "INTER SANTE - " . _("Modifier Paramètres Production"); ?>
<script type="text/javascript">
<div class="page-content">
<input class="sr-only" type="text" id="idSocieteuser" name="idSocieteuser" value="<?= $this->nettoyer($societeuser['idSocieteuser']) ?>">
</script>
<div class="header-section mb-4">
<div class="d-flex align-items-center justify-content-between bg-white p-3 shadow-sm border-start border-warning border-4" style="border-radius: var(--radius-md);">
<div class="d-flex align-items-center">
<div class="icon-shape bg-warning-ghost text-warning rounded-circle me-3" style="width: 45px; height: 45px; display: flex; align-items: center; justify-content: center;">
<i class="fas fa-edit fs-5"></i>
</div>
<div>
<h4 id="titre-page" class="mb-0 fw-bold text-uppercase"><?= _("Modifier Règles Métier") ?></h4>
<p class="text-muted small mb-0"><?= _("Production & Comptabilité — Ajustement des seuils et taux opérationnels") ?></p>
</div>
</div>
<div class="d-flex gap-2">
<button class="btn btn-outline-secondary btn-sm px-3 fw-bold" onclick="javascript:afficher_autres_parametresgeneraux();">
<i class="fas fa-undo me-2"></i><?= _("Annuler") ?>
</button>
<button class="btn btn-primary btn-sm px-3 fw-bold shadow-sm" id="btn_enreg" onclick="javascript:enregistrer_modif_parametres_prod();">
<i class="fas fa-save me-2"></i><?= _("Enregistrer") ?>
</button>
</div>
</div>
</div>
<input class="sr-only" type="text" id="idSocieteuser" name="idSocieteuser" value="<?= $this->nettoyer($societeuser['idSocieteuser']) ?>" >
<form id="formModifProd">
<div class="card border-0 shadow-sm mb-4">
<div class="card-header bg-primary py-3">
<h6 class="mb-0 text-white fw-bold text-uppercase"><i class="fas fa-industry me-2"></i><?= _("Paramètres de Production") ?></h6>
</div>
<div class="card-body p-0">
<div class="table-responsive">
<table class="table table-hover align-middle mb-0">
<thead class="bg-light">
<tr>
<th width="5%" class="text-center border-0 small text-muted">#</th>
<th class="border-0 small text-muted"><?= _("Désignation du paramètre") ?></th>
<th width="18%" class="text-center border-0 small text-muted"><?= _("Ancienne Valeur") ?></th>
<th width="22%" class="text-center border-0 small text-muted"><?= _("Nouvelle Valeur") ?></th>
</tr>
</thead>
<tbody>
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-primary-ghost">01</span></td>
<td class="text-dark fw-bold"><?= _("Taux des honoraires ou commissions du gestionnaire sur chaque prime") ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= $this->nettoyer($societeuser['tauxHonoraires']) ?> %</td>
<td>
<div class="input-group input-group-sm">
<input class="form-control text-center fw-bold border-warning" id="tauxHonoraires" name="tauxHonoraires" type="text" value="<?= $this->nettoyer($societeuser['tauxHonoraires']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['tauxHonoraires']) ?>);">
<span class="input-group-text bg-white border-warning">%</span>
</div>
</td>
</tr>
<legend > <?= _("MODIFIER PARAMETRES SYSTEME DE PRODUCTION ET DE COMPTABILITE") ?> </legend>
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-primary-ghost">02</span></td>
<td class="text-dark fw-bold small"><?= _("Rapport S/P au-delà duquel les lignes s'affichent en rouge (spMax)") ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= $this->nettoyer($societeuser['spMax']) ?> %</td>
<td>
<div class="input-group input-group-sm">
<input class="form-control text-center fw-bold border-warning" id="spMax" name="spMax" type="text" value="<?= $this->nettoyer($societeuser['spMax']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['spMax']) ?>);">
<span class="input-group-text bg-white border-warning">%</span>
</div>
</td>
</tr>
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style='font-size:11pt;'>
<?php
$cartes = [
['03', _("Coût d'une nouvelle carte (assuré entrant)"), 'fraisCarteAN'],
['04', _("Coût d'une carte pour un renouvellement"), 'fraisCarteREN'],
['05', _("Coût pour ré-imprimer une carte (perdue/abîmée)"), 'fraisCarteImp']
];
foreach($cartes as $c): ?>
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-primary-ghost"><?= $c[0] ?></span></td>
<td class="text-dark fw-bold"><?= $c[1] ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= format_N($this->nettoyer($societeuser[$c[2]])) ?></td>
<td>
<div class="input-group input-group-sm">
<input class="form-control text-center fw-bold border-warning" id="<?= $c[2] ?>" name="<?= $c[2] ?>" type="text" value="<?= $this->nettoyer($societeuser[$c[2]]) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser[$c[2]]) ?>);">
<span class="input-group-text bg-white border-warning"><?= $_SESSION['devise_C'] ?></span>
</div>
</td>
</tr>
<?php endforeach; ?>
<thead>
<tr>
<th colspan="2" style="text-align: center; font-weight: bold; background-color:#696969; color:#fff;" height="25"><?= _("Paramètres") ?></th>
<th width="14%" style="text-align: center; font-weight: bold; background-color:#696969; color:#fff;" height="25"> <?= _("Ancienne Valeur") ?> </th>
<th width="14%" style="text-align: center; font-weight: bold; background-color:#696969; color:#fff;" height="25"> <?= _("Nouvelle Valeur") ?> </th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="4" height="5"></td>
</tr>
<?php
$selects = [
['09', _("Permettre l'archivage automatique des primes ?"), 'archivageAutomatiquePrime', $archiveautoouinon],
['10', _("Envoi du n° assuré par notification (SMS/WA/Mail) ?"), 'notificationSmsNumeroAssure', $notificationSmsNumeroAssureouinon],
['12', _("Activer la facturation d'un garant par produit ?"), 'parametresFacturationGarantProduit', $parametresFacturationGarantProduitouinon],
['13', _("Autoriser l'ajout de photos sur le portail assuré ?"), 'assureAjoutPhoto', $assureAjoutPhotoOuinon]
];
foreach($selects as $s): ?>
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-primary-ghost"><?= $s[0] ?></span></td>
<td class="text-dark fw-bold"><?= $s[1] ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= ($societeuser[$s[2]] == "1") ? _("Oui") : _("Non") ?></td>
<td>
<select class="form-select form-select-sm fw-bold border-warning" id="<?= $s[2] ?>" name="<?= $s[2] ?>">
<?php liste_options($s[3], $this->nettoyer($societeuser[$s[2]]), true); ?>
</select>
</td>
</tr>
<?php endforeach; ?>
</tbody>
</table>
</div>
</div>
</div>
<tr style="background-color: #ffefd5;">
<td height="30" colspan="4" style='font-weight: bold; text-align: center; font-size:11pt;'> <?= _("PRODUCTION") ?> </td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">01 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Taux des honoraires ou des commissions du gestionnaire sur chaque prime.") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=$this->nettoyer($societeuser['tauxHonoraires']) . " % "?> </td>
<div class="card border-0 shadow-sm mb-5">
<div class="card-header bg-success py-3">
<h6 class="mb-0 text-white fw-bold text-uppercase"><i class="fas fa-calculator me-2"></i><?= _("Paramètres Comptables") ?></h6>
</div>
<div class="card-body p-0">
<table class="table table-hover align-middle mb-0">
<tbody>
<tr class="searchable-row">
<td width="5%" class="text-center"><span class="badge-ghost bg-success-ghost">01</span></td>
<td class="text-dark fw-bold"><?= _("Valeur de l'écart toléré sur encaissement prime ou garant") ?></td>
<td width="18%" class="text-center bg-light text-muted fw-bold"><?= format_N($this->nettoyer($societeuser['EcartEncaissementTolerable'])) ?></td>
<td width="22%">
<div class="input-group input-group-sm">
<input class="form-control text-center fw-bold border-warning" id="ecartEncaissementTolerable" name="ecartEncaissementTolerable" type="text" value="<?= $this->nettoyer($societeuser['EcartEncaissementTolerable']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['EcartEncaissementTolerable']) ?>);">
<span class="input-group-text bg-white border-warning"><?= $_SESSION['devise_C'] ?></span>
</div>
</td>
</tr>
<tr class="searchable-row">
<td class="text-center"><span class="badge-ghost bg-success-ghost">02</span></td>
<td class="text-dark fw-bold"><?= _("Le lettrage des encaissements garants est-il automatique ?") ?></td>
<td class="text-center bg-light text-muted fw-bold"><?= ($societeuser['lettrageAutoGarant'] == "1") ? _("Oui") : _("Non") ?></td>
<td>
<select class="form-select form-select-sm fw-bold border-warning" id="lettrageAutoGarant" name="lettrageAutoGarant">
<?php liste_options($lettrageAutoGarantouinon, $this->nettoyer($societeuser['lettrageAutoGarant']), true); ?>
</select>
</td>
</tr>
</tbody>
</table>
</div>
</div>
</form>
</div>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="tauxHonoraires" NAME="tauxHonoraires" TYPE="text" value="<?= $this->nettoyer($societeuser['tauxHonoraires']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['tauxHonoraires']) ?>);"></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">02 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Rapport Sinistres/Primes au-delà duquel les lignes s'affichent en rouge dans les états statistiques. Il est utilisé pour le calcul du taux d'ajustement lors du renouvellement => Nouvelle Prime = ((Ancienne Prime * S/P) / spMax ). Ce qui veut dire que la S/P ne devrait pas dépasser ce rapport spMax") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=$this->nettoyer($societeuser['spMax']) . " % "?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="spMax" NAME="spMax" TYPE="text" value="<?= $this->nettoyer($societeuser['spMax']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['spMax']) ?>);"></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">03 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Le coût d'une nouvelle carte (assuré entrant)") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=format_N($this->nettoyer($societeuser['fraisCarteAN'])) . " " . $_SESSION['devise_C']?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="fraisCarteAN" NAME="fraisCarteAN" TYPE="text" value="<?= $this->nettoyer($societeuser['fraisCarteAN']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['fraisCarteAN']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">04 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Le coût d'une carte pour un renouvellement (assuré déjà dans le portefeuille)") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=format_N($this->nettoyer($societeuser['fraisCarteREN'])) . " " . $_SESSION['devise_C']?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="fraisCarteREN" NAME="fraisCarteREN" TYPE="text" value="<?= $this->nettoyer($societeuser['fraisCarteREN']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['fraisCarteREN']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">05 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Le coût pour ré-imprimer une carte existante (perdue, abîmée, etc.)") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=format_N($this->nettoyer($societeuser['fraisCarteImp'])) . " " . $_SESSION['devise_C']?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="fraisCarteImp" NAME="fraisCarteImp" TYPE="text" value="<?= $this->nettoyer($societeuser['fraisCarteImp']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['fraisCarteImp']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">06 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Rapport Sinistres/Primes au délà duquel une famille est marquée comme à consommation trop élevée") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=$this->nettoyer($societeuser['spAlertAdherent']) . " % "?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="spAlertAdherent" NAME="spAlertAdherent" TYPE="text" value="<?= $this->nettoyer($societeuser['spAlertAdherent']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['spAlertAdherent']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">07 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Taux à appliquer à la prime non acquise en cas de retrait d'un assuré afin d'avoir la prime à ristourner. Exemple, pour une prime non acquise de 100 000, on retournera 75 000 si tauxRistourne = 75%") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=$this->nettoyer($societeuser['tauxRistourne']) . " % "?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="tauxRistourne" NAME="tauxRistourne" TYPE="text" value="<?= $this->nettoyer($societeuser['tauxRistourne']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['tauxRistourne']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">08 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Rapport Sinistres/Primes au dela duquel, il n'y aura plus de ristourne en cas de retrait d'un assuré. Exemple si le seuil est de 65% et que le S/P de la police est de 55%, on aura une retourne en cas de retrait. Par contre, dès que le S/P de la police atteindra 65%, tous les futurs retraits se feront sans ristourne") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=$this->nettoyer($societeuser['seuilRistourne']) . " % " ?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="seuilRistourne" NAME="seuilRistourne" TYPE="text" value="<?= $this->nettoyer($societeuser['seuilRistourne']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['seuilRistourne']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">09 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Permettre l'archivage automatique des primes?") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;">
<?php if ($societeuser['archivageAutomatiquePrime']=="1"): ?>
<?= _("Oui") ?>
<?php else: ?>
<?= _("Non") ?>
<?php endif; ?>
</td>
<td>
<select class="form-select" id="archivageAutomatiquePrime" NAME="archivageAutomatiquePrime" style='font-size:10pt; text-align:center;' >
<?php liste_options($archiveautoouinon, $this->nettoyer($societeuser['archivageAutomatiquePrime']), true); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">10 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Le bénéficiaire reçoit-il son numéro d'assuré par SMS, WhatsApp et/ou Mail ?") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;">
<?php if ($societeuser['notificationSmsNumeroAssure']=="1"): ?>
<?= _("Oui") ?>
<?php else: ?>
<?= _("Non") ?>
<?php endif; ?>
</td>
<td>
<select class="form-select" id="notificationSmsNumeroAssure" NAME="notificationSmsNumeroAssure" style='font-size:10pt; text-align:center;' >
<?php liste_options($notificationSmsNumeroAssureouinon, $this->nettoyer($societeuser['notificationSmsNumeroAssure']), true); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">11 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("L'assuré principal reçoit en groupe, les numéros d'assurés de tous les membres de sa famille, par SMS, WhatsApp et/ou E-Mail ?") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;">
<?php if ($societeuser['notificationGroupeNumeroAssure']=="1"): ?>
<?= _("Oui") ?>
<?php else: ?>
<?= _("Non") ?>
<?php endif; ?>
</td>
<td>
<select class="form-select" id="notificationGroupeNumeroAssure" NAME="notificationGroupeNumeroAssure" style='font-size:10pt; text-align:center;' >
<?php liste_options($notificationGroupeNumeroAssureouinon, $this->nettoyer($societeuser['notificationGroupeNumeroAssure']), true); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">12 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Activer le paramétrage de la facturation d'un garant par produit ?") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;">
<?php if ($societeuser['parametresFacturationGarantProduit']=="1"): ?>
<?= _("Oui") ?>
<?php else: ?>
<?= _("Non") ?>
<?php endif; ?>
</td>
<td>
<select class="form-select" id="parametresFacturationGarantProduit" NAME="parametresFacturationGarantProduit" style='font-size:10pt; text-align:center;' >
<?php liste_options($parametresFacturationGarantProduitouinon, $this->nettoyer($societeuser['parametresFacturationGarantProduit']), true); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-primary">13 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Permettre aux adhérents d'ajouter les photos de leurs familles au niveau du portail assuré ?") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;">
<?php if ($societeuser['assureAjoutPhoto']=="1"): ?>
<?= _("Oui") ?>
<?php else: ?>
<?= _("Non") ?>
<?php endif; ?>
</td>
<td>
<select class="form-select" id="assureAjoutPhoto" NAME="assureAjoutPhoto" style='font-size:10pt; text-align:center;' >
<?php liste_options($assureAjoutPhotoOuinon, $this->nettoyer($societeuser['assureAjoutPhoto']), true); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr style="background-color: #ffefd5;">
<td height="30" colspan="4" style='font-weight: bold; text-align: center; font-size:11pt;'> <?= _("COMPTABILITE") ?> </td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-success">01 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("La valeur de l'écart toléré lorsqu'un encaissement de prime ou de facture garant est fait") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;"> <?=format_N($this->nettoyer($societeuser['EcartEncaissementTolerable'])) . " " . $_SESSION['devise_C']?> </td>
<td> <INPUT style='font-size:10pt; text-align:center;' class="form-control" id="ecartEncaissementTolerable" NAME="ecartEncaissementTolerable" TYPE="text" value="<?= $this->nettoyer($societeuser['EcartEncaissementTolerable']) ?>" onBlur="javascript:controle_numerique_new(this.id, <?= $this->nettoyer($societeuser['EcartEncaissementTolerable']) ?>);" ></td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr height="50">
<td style='text-align:center;' width="5%" class=" text-success">02 <i class='bx bxs-right-arrow'></td>
<td class=" text-dark">
<?= _("Le lettrage des encaissements garants se fait-il automatiquement ?") ?>
</td>
<td style="text-align: center; background-color:#dcdcdc;">
<?php if ($societeuser['lettrageAutoGarant']=="1"): ?>
<?= _("Oui") ?>
<?php else: ?>
<?= _("Non") ?>
<?php endif; ?>
</td>
<td>
<select class="form-select" id="lettrageAutoGarant" NAME="lettrageAutoGarant" style='font-size:10pt; text-align:center;' >
<?php liste_options($lettrageAutoGarantouinon, $this->nettoyer($societeuser['lettrageAutoGarant']), true); ?>
</SELECT>
</td>
</tr>
<tr>
<td colspan="4" height="5"></td>
</tr>
<tr>
<td colspan="2"> <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:enregistrer_modif_parametres_prod();" style='font-size:10pt;' > </td>
<td colspan="2"> <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:afficher_autres_parametresgeneraux();" style='font-size:10pt;' > </td>
</tr>
</tbody>
</table>
<style>
/* Style d'input focus spécifique au mode édition */
.form-control:focus, .form-select:focus {
border-color: #f39c12;
box-shadow: 0 0 0 0.2rem rgba(243, 156, 18, 0.15);
}
</style>