This commit is contained in:
KONE SOREL 2026-04-13 14:03:43 +00:00
parent d71b125ca0
commit 1bc3f836d7

View File

@ -27,7 +27,7 @@
<label class="form-label small fw-bold text-muted"><?= _("Prime Mini") ?></label>
<div class="input-group">
<span class="input-group-text bg-light opacity-75"><i class="fas fa-arrow-down text-muted"></i></span>
<input class="form-control text-center bg-light fw-bold" type="text" disabled
<input class="form-control text-center border-2 border-start-0 fw-bold" type="text" disabled
value="<?=format_N($this->nettoyer($bareme['primeMin']));?>">
</div>
</div>
@ -36,7 +36,7 @@
<label class="form-label small fw-bold text-muted required"><?= _("Montant Accessoire") ?></label>
<div class="input-group">
<span class="input-group-text bg-light text-success"><i class="fas fa-money-bill-wave"></i></span>
<input class="form-control text-center fw-bold" type="text" id="accessoireForfait" name="accessoireForfait"
<input class="form-control text-center border-2 border-start-0 fw-bold" type="text" id="accessoireForfait" name="accessoireForfait"
value="<?=$bareme['accessoireForfait'];?>" onkeyup="controle_numerique(this);" onblur="formatMonetaire(this);" required>
</div>
</div>
@ -57,7 +57,7 @@
<label class="form-label small fw-bold text-muted"><?= _("Prime Maxi") ?></label>
<div class="input-group">
<span class="input-group-text bg-light opacity-75"><i class="fas fa-arrow-up text-muted"></i></span>
<input class="form-control text-center bg-light fw-bold" type="text" disabled
<input class="form-control text-center border-2 border-start-0 fw-bold" type="text" disabled
value="<?=format_N($this->nettoyer($bareme['primeMax']));?>">
</div>
</div>
@ -66,7 +66,7 @@
<label class="form-label small fw-bold text-muted"><?= _("Taux (%)") ?></label>
<div class="input-group">
<span class="input-group-text bg-light text-info"><i class="fas fa-percentage"></i></span>
<input class="form-control text-center fw-bold" type="number" step="0.01" min="0"
<input class="form-control text-center border-2 border-start-0 fw-bold" type="number" step="0.01" min="0"
id="tauxAccessoire" name="tauxAccessoire"
value="<?=number_format($bareme['tauxAccessoire'], 2);?>" onBlur="controle_numerique(this);">
</div>