45 lines
1.8 KiB
PHP
Executable File
45 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
|
|
?>
|
|
<input class="sr-only" id="statutActe" name="statutActe" type="text" value= "<?= $statutActe ?>" >
|
|
<input class="sr-only" id="libelleMotif" name="libelleMotif" type="text" value= "<?= $motifStatutActe['libelle']; ?>" >
|
|
<input class="sr-only" id="libelleMotifEng" name="libelleMotifEng" type="text" value= "<?= $motifStatutActe['libelleEng']; ?>" >
|
|
|
|
<div id="div_plafond">
|
|
<table class="table table-responsive table-condensed" style='font-size:12pt;'>
|
|
<tbody>
|
|
<tr>
|
|
<?php if ($plafondActe['soldeConsommation']!="9999999999"):?>
|
|
<td width="20%" align='center' class="sr-only"> <?= _("Solde plafond") ?> </td>
|
|
<td align='center' >
|
|
<input class="sr-only" style="text-align: center; font-size:14pt; font-weight:bold;" type="text" id="soldeConsommation" name="soldeConsommation" value="<?= format_N($this->nettoyer($plafondActe['soldeConsommation'])); ?>"
|
|
readonly>
|
|
</td>
|
|
<?php else:?>
|
|
|
|
<td colspan="2" align='center'>
|
|
<input class="sr-only"style="text-align: center; font-size:12pt;" type="text" value="" readonly>
|
|
</td>
|
|
<?php endif;?>
|
|
</tr>
|
|
|
|
<tr>
|
|
<?php if ($plafondActe['soldeNbreTransaction']!="999"):?>
|
|
<td align='center' class="sr-only"> <?= _("Solde nombre transaction") ?> </td>
|
|
<td align='center' >
|
|
<input class="sr-only"style="text-align: center; font-size:14pt; font-weight:bold;" type="text" id="soldeNbreTransaction" name="soldeNbreTransaction" value="<?= $this->nettoyer($plafondActe['soldeNbreTransaction']);?>" readonly>
|
|
</td>
|
|
<?php else:?>
|
|
|
|
<td colspan="2" align='center'>
|
|
<input class="sr-only"style="text-align: center; font-size:12pt;" type="text" value="" readonly>
|
|
</td>
|
|
<?php endif;?>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<div id="div_messages">
|
|
</div>
|
|
</div>
|