53 lines
2.3 KiB
PHP
Executable File
53 lines
2.3 KiB
PHP
Executable File
<form id="formData">
|
|
<legend id="titre_formData"><?= _("Modification des données") ?></legend>
|
|
<INPUT class="sr-only" TYPE="text" id = "id" name = "id" value="<?=$bareme['id']?>">
|
|
<INPUT class="sr-only" TYPE="text" id = "codeTypeContrat" name = "codeTypeContrat" value="<?=$bareme['codeTypeContrat']?>">
|
|
<INPUT class="sr-only" TYPE="text" id = "primeMin" name = "primeMin" value="<?=$bareme['primeMin']?>">
|
|
<INPUT class="sr-only" TYPE="text" id = "codeApplication" name = "codeApplication" value="<?=$bareme['codeApplication']?>">
|
|
<INPUT class="sr-only" TYPE="text" id = "primeMax" name = "primeMax" value="<?=$bareme['primeMax']?>">
|
|
|
|
<table class="table table-responsive table-condensed">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%" align="center" ><?= _("Type Contrat") ?></td>
|
|
<td>
|
|
<select class="form-select text-center" disabled>
|
|
<?php liste_options($typecontrat,$this->nettoyer($bareme['codeTypeContrat']),true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="8%" align="center" ><?= _("Prime Mini") ?></td>
|
|
<td width="20%" >
|
|
<div id="div_prime_mini">
|
|
<INPUT class="form-control text-center" TYPE="text" disabled
|
|
value="<?=format_N($this->nettoyer($bareme['primeMin']));?>" >
|
|
</div>
|
|
</td>
|
|
|
|
<td width="8%" align="center"><?= _("Forfait") ?></td>
|
|
<td width="20%" >
|
|
<INPUT class="form-control" TYPE="text" id="accessoireForfait" NAME="accessoireForfait"
|
|
value="<?=$bareme['accessoireForfait'];?>" >
|
|
</td>
|
|
|
|
</tr>
|
|
<tr>
|
|
<td width="10%" align="center" ><?= _("Application") ?></td>
|
|
<td>
|
|
<select class="form-select text-center" disabled>
|
|
<?php liste_options($application,$this->nettoyer($bareme['codeApplication']),true); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td width="8%" align="center" ><?= _("Prime Maxi") ?></td>
|
|
<td width="20%" >
|
|
<INPUT class="form-control text-center" TYPE="text" disabled
|
|
value="<?=format_N($this->nettoyer($bareme['primeMax']));?>" >
|
|
</td>
|
|
|
|
<td width="8%" align="center"><?= _("Taux") ?></td>
|
|
<td width="20%" ><INPUT class="form-control" TYPE="number" step="0.01" id="tauxAccessoire" min="0" NAME="tauxAccessoire" value="<?=number_format($bareme['tauxAccessoire'],2);?>" onBlur="controle_numerique(this);"></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</form>
|