radiantproduction/Vue/Nouveauproduit/index.php

38 lines
2.0 KiB
PHP

<?php $this->titre = "INTER-SANTE - Créer un nouveau Produit"; ?>
<legend> <?= _("Nouveau Produit") ?> </legend>
<table class="table table-responsive table-condensed" style="font-size:10pt;">
<tbody>
<tr>
<td width="10%" > Code </td>
<td><INPUT font style="text-transform: uppercase;" class="form-control" TYPE="text" id="codeProduit" NAME="codeProduit" required autofocus ></td>
<td width="10%" align="center" > <?= _("Libellé") ?> </td>
<td colspan="5" ><INPUT style="font-size:10pt;" class="form-control" TYPE="text" id="libelle" NAME="libelle" ></td>
</tr>
<tr>
<td> <?= _("Prime Famille") ?> </td>
<td ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" value="0" id="primeFamille" NAME="primeFamille" onBlur="controle_numerique(this);"></td>
<td align="center"> <?= _("Prime Indiv") ?> </td>
<td ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" value="0" id="primeIndividu" NAME="primeIndividu" onBlur="controle_numerique(this);"></td>
<td width="10%" align="center" > <?= _("Prime Min") ?> </td>
<td ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" value="0" id="primeMin" NAME="primeMin" onBlur="controle_numerique(this);"></td>
<td width="10%" align="center" > <?= _("Prime Max") ?> </td>
<td ><INPUT style='text-align:center; font-size:10pt;' class="form-control" type="number" value="0" id="primeMax" NAME="primeMax" onBlur="controle_numerique(this);"></td>
</tr>
<tr>
<td> </td>
<td colspan="3" > <input id="btn_enreg" name="btn_enreg" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:creer_produit();" style='font-size:10pt;' > </td>
<td> </td>
<td colspan="3" > <input class = "form-control btn btn-warning" type="button" value="<?= _("Annuler") ?>" onClick="javascript:retour_liste_produits();" style='font-size:10pt;' > </td>
</tr>
</tbody>
</table>