der
This commit is contained in:
parent
f0d1f7659f
commit
47661ff9f1
|
|
@ -28,10 +28,17 @@
|
|||
</div>
|
||||
|
||||
<div class="col-md-4">
|
||||
<label class="form-label small fw-bold text-muted required"><?= _("Forfait") ?></label>
|
||||
<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 border-2 border-start-0" type="text" value="0" id="accessoireForfait" name="accessoireForfait" onkeyup="controle_numerique(this);" onblur="formatMonetaire(this);">
|
||||
<input class="form-control text-center fw-bold border-2 border-start-0"
|
||||
type="text"
|
||||
value="0"
|
||||
id="accessoireForfait"
|
||||
name="accessoireForfait"
|
||||
onkeyup="controle_numerique(this);"
|
||||
onblur="formatMonetaire(this);"
|
||||
required>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
@ -41,7 +48,11 @@
|
|||
<label class="form-label small fw-bold text-muted required"><?= _("Application") ?></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text bg-light"><i class="fas fa-cog text-primary"></i></span>
|
||||
<select class="form-select border-2 border-start-0" id="codeApplication" name="codeApplication" required autocomplete="off" onchange="javascript:affiche_prime_min();">
|
||||
<select class="form-select border-2 border-start-0"
|
||||
id="codeApplication"
|
||||
name="codeApplication"
|
||||
required autocomplete="off"
|
||||
onchange="javascript:affiche_prime_min();">
|
||||
<?php liste_options($application, "", false); ?>
|
||||
</select>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -36,7 +36,12 @@
|
|||
<label class="form-label small fw-bold text-warning required"><?= _("Forfait") ?></label>
|
||||
<div class="input-group">
|
||||
<span class="input-group-text bg-warning-light text-warning"><i class="fas fa-money-bill-wave"></i></span>
|
||||
<input class="form-control text-center fw-bold border-2 border-start-0" type="text" id="accessoireForfait" name="accessoireForfait" value="<?= $bareme['accessoireForfait']; ?>" onkeyup="controle_numerique(this);" onblur="formatMonetaire(this);">
|
||||
<input class="form-control text-center fw-bold border-2 border-start-0"
|
||||
type="text" id="accessoireForfait"
|
||||
name="accessoireForfait"
|
||||
value="<?= $bareme['accessoireForfait']; ?>"
|
||||
onkeyup="controle_numerique(this);"
|
||||
onblur="formatMonetaire(this);" required>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user