38 lines
1.6 KiB
PHP
Executable File
38 lines
1.6 KiB
PHP
Executable File
<div id="infosbon">
|
|
<input class="sr-only" type="text" id="codeEtatBon" name="codeEtatBon" value="<?= $codeEtatBon ?>">
|
|
<input class="sr-only" type="text" id="numeroBonSave" name="numeroBonSave" value="<?= $numeroBon ?>">
|
|
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="20%" > <?= _("Numéro Bon") ?> </td>
|
|
<td width="30%" > <input class="form-control" style="text-align: center; font-size:10pt;" type="number" id="numeroBon" name="numeroBon" value="<?= $numeroBon ?>" required AUTOCOMPLETE="OFF"
|
|
onChange="ajaxinfosbonseancekinecso();" onkeypress="javascript:ctrlkeypress_numeroBon(event);" ></td>
|
|
|
|
<td width="15%" > </td>
|
|
<td>
|
|
<?php if ($codeEtatBon=="1"): ?>
|
|
<input id="btn_enreg_bon_kine" name="btn_enreg_bon_kine" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" onClick="javascript:enregistrerbonsseancekinecso();" style='font-size:10pt;' >
|
|
<?php else: ?>
|
|
<input id="btn_enreg_bon_kine" name="btn_enreg_bon_kine" class = "form-control btn btn-primary" type="button" value="<?= _("Enregistrer") ?>" disabled style='font-size:10pt;' >
|
|
<?php endif; ?>
|
|
</td>
|
|
</tr>
|
|
|
|
</tbody>
|
|
</table>
|
|
|
|
<?php if (isset($msgErreur)): ?>
|
|
<?php if ($codeEtatBon=="1"): ?>
|
|
<div id ="msgErreur" class="alert alert-success" style="height:38px; padding:5px;">
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php else: ?>
|
|
<div id ="msgErreur" class="alert alert-danger" style="height:38px; padding:5px;">
|
|
<H4><?= $msgErreur ?></H4>
|
|
</div>
|
|
<?php endif; ?>
|
|
<?php endif; ?>
|
|
|
|
</div>
|