mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
24 lines
946 B
PHP
24 lines
946 B
PHP
<table>
|
|
<tr class="encuadernacion">
|
|
<th class="cell-50">Encuadernacion</th>
|
|
<th class="cell-50">Color</th>
|
|
<th class="cell-50">Plakenes</th>
|
|
<th class="cell-50">Plakene</th>
|
|
<th class="cell-50">Externo</th>
|
|
<th class="cell-50">Retractilado</th>
|
|
</tr>
|
|
<?php if (count($encuadernaciones) > 0): ?>
|
|
<tr style="color: red;">
|
|
<td><?= $encuadernacion->tarifa()->nombre ?></td>
|
|
<td></td>
|
|
<td><?= $flags['isPlakene'] ? "SI" : "NO" ?></td>
|
|
<td><?= $plakene_tipo ?? "" ?></td>
|
|
<td><?= $encuadernacion->proveedor() ? $encuadernacion->proveedor()->nombre : "" ?></td>
|
|
<td><?= $presupuesto->retractilado ? "SI" : "NO" ?></td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="color: red;">
|
|
<td colspan="7">Sin encuadernación</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</table>
|