This commit is contained in:
KONE SOREL 2026-04-13 15:59:02 +00:00
parent f49bf360e0
commit c4e3521488
3 changed files with 73 additions and 23 deletions

View File

@ -83358,7 +83358,6 @@ function controle_spmax()
return;
}
}
//Ajaxtbajouterbaremeaccessoireavenant
//Ajaxtbmodifierbaremeaccessoireavenant/

View File

@ -26,7 +26,7 @@
<span class="input-group-text text-primary">
<i class="fas fa-chart-line"></i>
</span>
<input class="form-control text-center fw-bold border-2 border-start-0 border-primary-subtle"
<input class="form-control text-center fw-bold border-2 border-start-0"
type="number" step="0.01"
id="spMax" name="spMax"
required autocomplete="off"

View File

@ -1,21 +1,72 @@
<form id="formData">
<legend id="titre_formData"><?= _("Modification des données")?></legend>
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$tableauajustement['id']?>">
<table class="table table-responsive table-condensed">
<tbody>
<tr>
<td width="10%" align="center"><?= _("S/P Minimum")?></td>
<td width="15%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMin" NAME="spMin" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($tableauajustement['spMin']); ?>" readonly></td>
<td width="10%" align="center" class="required"><?= _("S/P Maximum")?></td>
<td width="15%" ><INPUT class="form-control" TYPE="number" step="0.01" id="spMax" NAME="spMax" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($tableauajustement['spMax']); ?>" onblur="javascript:controle_spmax();"></td>
<td width="10%" align="center" class="required"><?= _("Taux")." (%)"?></td>
<td width="15%" ><INPUT class="form-control" TYPE="number" step="0.01" id="tauxAjustement" required AUTOCOMPLETE="OFF" NAME="tauxAjustement" value="<?= $this->nettoyer($tableauajustement['tauxAjustement']); ?>"></td>
<td width="10%" align="center"><?= _("Ordre")?></td>
<td width="15%" ><INPUT class="form-control" TYPE="number" id="ordre" NAME="ordre" required AUTOCOMPLETE="OFF" value="<?= $this->nettoyer($tableauajustement['ordre']); ?>"></td>
</tr>
</tbody>
</table>
</form>
<div class="card border-0 shadow-sm mb-4 border-start border-warning border-4 animate__animated animate__fadeIn">
<div class="card-header bg-white py-3">
<h6 class="card-title mb-0 fw-bold text-warning text-uppercase small">
<i class="fas fa-edit me-2"></i><?= _("Modification des données") ?>
</h6>
</div>
<div class="card-body p-4">
<form id="formData">
<input class="sr-only" type="text" id="id" name="id" value="<?=$tableauajustement['id']?>">
<div class="row g-3 align-items-end">
<div class="col-md-3">
<label class="form-label small fw-bold text-muted text-uppercase"><?= _("S/P Minimum") ?></label>
<div class="input-group">
<span class="input-group-text bg-light opacity-75">
<i class="fas fa-lock text-muted"></i>
</span>
<input class="form-control text-center bg-light fw-bold"
type="number" step="0.01"
id="spMin" name="spMin"
required autocomplete="off"
value="<?= $this->nettoyer($tableauajustement['spMin']); ?>"
readonly>
</div>
</div>
<div class="col-md-3">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("S/P Maximum") ?></label>
<div class="input-group">
<span class="input-group-text bg-light text-warning">
<i class="fas fa-chart-line"></i>
</span>
<input class="form-control text-center fw-bold border-warning-subtle"
type="number" step="0.01"
id="spMax" name="spMax"
required autocomplete="off"
value="<?= $this->nettoyer($tableauajustement['spMax']); ?>"
onblur="javascript:controle_spmax();">
</div>
</div>
<div class="col-md-3">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("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"
id="tauxAjustement" name="tauxAjustement"
required autocomplete="off"
value="<?= $this->nettoyer($tableauajustement['tauxAjustement']); ?>">
</div>
</div>
<div class="col-md-3">
<label class="form-label small fw-bold text-muted text-uppercase required"><?= _("Ordre") ?></label>
<div class="input-group">
<span class="input-group-text bg-light text-secondary">
<i class="fas fa-sort-numeric-down"></i>
</span>
<input class="form-control text-center fw-bold"
type="number"
id="ordre" name="ordre"
required autocomplete="off"
value="<?= $this->nettoyer($tableauajustement['ordre']); ?>">
</div>
</div>
</div>
</form>
</div>
</div>