mirror of
https://git.imnavajas.es/jjimenez/safekat.git
synced 2025-07-25 22:52:08 +00:00
36 lines
1.5 KiB
PHP
36 lines
1.5 KiB
PHP
<table>
|
|
<tr>
|
|
<th class="encuadernacion">Encuadernacion</th>
|
|
<th class="cell-50">Pliegos</th>
|
|
<th class="cell-50">Pliegos</th>
|
|
<th class="cell-50">Guardas</th>
|
|
<th class="cell-50">Guardas Impresion</th>
|
|
<th class="cell-50">Cabezada</th>
|
|
<th class="cell-50">Lomo</th>
|
|
</tr>
|
|
<?php if (count($encuadernaciones) > 0): ?>
|
|
<?php foreach ($encuadernaciones as $key => $value): ?>
|
|
<tr style="color: red;">
|
|
<td><?= $value->tarifa()->nombre ?></td>
|
|
<td><?=$tareaCosido->pliego_1." de ".$tareaCosido->pliego_1_total?></td>
|
|
<td><?=$tareaCosido->pliego_2." de ".$tareaCosido->pliego_2_total?></td>
|
|
<td></td>
|
|
<td></td>
|
|
<td>Color/NO</td>
|
|
<td>Recto/Redondo</td>
|
|
</tr>
|
|
<tr>
|
|
<td class="encuadernacion" colspan="1">Sobrecubierta</td>
|
|
<td style="color:red" colspan="2"><?= $linea_impresion->isSobreCubierta() ? "SI" : "NO" ?></td>
|
|
<td class="encuadernacion">Retractilado</td>
|
|
<td style="color:red"><?= $presupuesto->retractilado ? "SI" : "NO" ?></td>
|
|
<td class="encuadernacion">Marcapáginas</td>
|
|
<td style="color:red"><?= $presupuesto->marcapaginas ? "SI" : "NO" ?></td>
|
|
</tr>
|
|
<?php endforeach; ?>
|
|
<?php else: ?>
|
|
<tr style="color: red;">
|
|
<td colspan="7">Sin encuadernación</td>
|
|
</tr>
|
|
<?php endif; ?>
|
|
</table>
|