34 lines
1.9 KiB
PHP
Executable File
34 lines
1.9 KiB
PHP
Executable File
<legend><?= _("FACTURATION HONORAIRES FORFAITAIRES")?></legend>
|
|
<div id="div_honoraires_forfaitaire">
|
|
<table id="" class="table table-responsive table-condensed" style="font-size:12pt;">
|
|
<tbody>
|
|
<tr>
|
|
<td width="10%"><?= _("Assiette") ?></td>
|
|
<td width="15%">
|
|
<SELECT class="form-control" id="codeAssietteFacturationGarant" NAME="codeAssietteFacturationGarant" style="font-size:12pt; height:30px;" onChange="javascript:charger_honoraire_forfaitaire_garant();">
|
|
<?php liste_options($listeassiettes, ""); ?>
|
|
</SELECT>
|
|
</td>
|
|
|
|
<td align="center" width="5%"><?= _("HT") ?></td>
|
|
<td><INPUT class="form-control text-center" TYPE="text" id="montantHt" NAME="montantHt" value="<?= format_N($entetefacturegarant['montantHt']) ?>" style="font-size:12pt; height:30px;" disabled></td>
|
|
|
|
<td align="center" width="5%"><?= _("Taxe") ?></td>
|
|
<td><INPUT class="form-control text-center" TYPE="text" id="taxe" NAME="taxe" value="<?= format_N($entetefacturegarant['taxe']) ?>" style="font-size:12pt; height:30px;" disabled></td>
|
|
|
|
<td align="center" width="5%"><?= _("TTC") ?></td>
|
|
<td><INPUT class="form-control text-center" TYPE="text" id="montantTtc" NAME="montantTtc" value="<?= format_N($entetefacturegarant['montantTtc']) ?>" style="font-size:12pt; height:30px;" disabled>
|
|
|
|
<td align="center" width="7%"><?= _("Pop") ?></td>
|
|
<td width="8%"><INPUT class="form-control text-center" TYPE="text" id="accessoire" NAME="accessoire" value="<?= format_N($entetefacturegarant['nbAliment']) ?>" style="font-size:12pt; height:30px;" disabled></td>
|
|
|
|
</tr>
|
|
|
|
<tr>
|
|
<td colspan="10"> <input id="btn_fachforfait" name="btn_fachforfait" class = "form-control btn btn-primary" type="button" value="<?= _("Générer Facture Honoraires Forfaitaires") ?>" onClick="genererfacturehonoraireprimegarant();" style='font-size:12pt;' > </td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
</div>
|