32 lines
1.1 KiB
PHP
Executable File
32 lines
1.1 KiB
PHP
Executable File
<div id="div_compsante_tarif">
|
|
<table class="table table-striped table-bordered table-hover table-condensed table-responsive" style="font-size:8pt; paddind:0px;">
|
|
<thead>
|
|
<tr>
|
|
<th colspan="2" style='text-align:center'> <?= _("Désignation") ?> </th>
|
|
<th style='text-align:center'> <?= _("Prix") ?> </th>
|
|
<th width="5%" style='text-align:center'> <?= _("Actif?") ?> </th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
<?php foreach ($verres_in as $verre_in):
|
|
$codeOptique = $verre_in['codeOptique'];
|
|
$actif = $verre_in['actif'];
|
|
$libelleVerre = $this->nettoyer($verre_in['libelleVerre']);
|
|
?>
|
|
<tr valign="top">
|
|
<td width="10%" align='center'><?= $codeOptique ?></td>
|
|
<td><?= $libelleVerre ?></td>
|
|
<td align='center'><?= format_N($this->nettoyer($verre_in['prix'])) ?></td>
|
|
|
|
<?php if ($actif=="1"): ?>
|
|
<td align='center'> <input type="checkbox" checked disabled style='font-size:8pt;' ></td>
|
|
<?php else: ?>
|
|
<td align='center'> <input type="checkbox" disabled style='font-size:8pt;' ></td>
|
|
<?php endif; ?>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
</tbody>
|
|
</table>
|
|
</div>
|