25 lines
1.6 KiB
PHP
Executable File
25 lines
1.6 KiB
PHP
Executable File
<input class="sr-only" type="number" id="prixActe" name="prixActe" value="0">
|
|
<input class="sr-only" type="number" id="montantTm" name="montantTm" value="0">
|
|
<input class="sr-only" type="number" id="aRembourser" name="aRembourser" value="0">
|
|
<input class="sr-only" type="number" id="delaiCarenceActe" name="delaiCarenceActe" value="0">
|
|
<input class="sr-only" type="text" id="ententeprealable" name="ententeprealable" value="0">
|
|
<?php
|
|
$prixActeConsultation = isset($_SESSION['prixActeConsultation'])? $_SESSION['prixActeConsultation']:"0";
|
|
$montantTmConsultation = isset($_SESSION['montantTmConsultation'])? $_SESSION['montantTmConsultation']:"0";
|
|
$montantArembourserConsultation = isset($_SESSION['montantArembourserConsultation'])? $_SESSION['montantArembourserConsultation']:"0";
|
|
?>
|
|
<table class="table table-responsive table-condensed" style='font-size:10pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<td width="15%" > <?= _("Prix Acte") ?> </td>
|
|
<td width="20%" > <input class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;'" type="text" value="0" readonly> </td>
|
|
|
|
<td width="15%" align="center"> <?= _("Montant T M") ?> </td>
|
|
<td width="20%" > <input class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;'" type="text" value="0" readonly ></td>
|
|
|
|
<td width="15%" align="center"> <?= _("A Rembourser") ?> </td>
|
|
<td width="20%" > <input class="form-control" style="background-color: rgb(190,190,190);text-align: center; font-size:10pt;'" type="text" value="0" readonly ></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|