mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
39 lines
1.7 KiB
PHP
39 lines
1.7 KiB
PHP
<table>
|
|
<tr class="encuadernacion">
|
|
<th>Encuadernacion</th>
|
|
<th class="cell-50">Guardas</th>
|
|
<th class="cell-50">Guardas Imp.</th>
|
|
<th class="cell-50">Cabezada</th>
|
|
<th class="cell-50">Lomo</th>
|
|
<th class="cell-50">Sobrecubierta</th>
|
|
<th class="cell-50">Retractilado</th>
|
|
<th class="cell-50">Marcapáginas</th>
|
|
</tr>
|
|
<?php if (count($encuadernaciones) > 0): ?>
|
|
<tr style="color: red;">
|
|
<td><?= $encuadernacion->tarifa()->nombre ?></td>
|
|
<!-- Guardas -->
|
|
<?php if ($presupuesto->presupuestoLineaGuarda()): ?>
|
|
<td><?= $presupuesto->presupuestoLineaGuarda()->papel_generico()?->nombre ?></td>
|
|
<td><?= $presupuesto->presupuestoLineaGuarda()->paginas_impresion > 0 ? "SI" : "NO" ?>></td>
|
|
<?php else: ?>
|
|
<td>?</td>
|
|
<td><?= $presupuesto->presupuestoLineaGuarda()->paginas_impresion > 0 ? "SI" : "NO" ?>></td>
|
|
<?php endif; ?>
|
|
<!-- Cabezada -->
|
|
<td><?= $presupuesto->cabezada ? "COLOR" : "NO" ?></td>
|
|
<!-- Lomo -->
|
|
<td><?= $presupuesto->lomo_redondo ? "REDONDO" : "RECTO" ?></td>
|
|
<!-- Sobrecubierta -->
|
|
<td><?= $linea_impresion->isSobreCubierta() ? "SI" : "NO" ?></td>
|
|
<!-- Retractilado -->
|
|
<td><?= $presupuesto->retractilado ? "SI" : "NO" ?></td>
|
|
<!-- Marcapaginas -->
|
|
<td><?= $presupuesto->marcapaginas ? "SI" : "NO" ?></td>
|
|
</tr>
|
|
<?php else: ?>
|
|
<tr style="color: red;">
|
|
<td colspan="7">Sin encuadernación</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</table>
|