129 lines
3.4 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Inventario de SEAJB</title>
<style>
table {
overflow-x: auto;
border-collapse: collapse;
table-layout: fixed;
width: 50%;
}
table th,
td {
padding: 5px;
max-width: 400px;
word-wrap: break-word;
white-space: inherit;
}
table p {
text-align: center;
font-size: 10px;
font-weight: bold;
margin-bottom: 0px;
margin-top: 0px;
}
.bodertabla {
border: 1px solid black;
}
</style>
</head>
<body>
<table>
<tbody>
<tr>
<td colspan="5" style="padding: 10px; text-align:center;"><img src="{{img_uno}}" alt="icon" width="60"
height="80"></td>
<td colspan="8">
<p style="margin-top: 0px;">REPÚPLICA BOLIVARIANA DE VENEZUELA</p>
<p style="margin-top: 0px;">MINISTERIO DEL PODER POPULAR PARA LA DEFENSA</p>
<p style="margin-top: 0px;">EJÉRCITO BOLIVARIANO</p>
<p style="margin-top: 0px;">SERVICIO DE ARMAMENTO</p>
</td>
<td colspan="5" style="padding: 20px;"><img src="{{img_dos}}" width="70"></td>
</tr>
</tbody>
<tbody>
<tr>
<td colspan="4" style="text-align: left;">Codigo-D : {{producto.code}}</td>
<td colspan="5" style="text-align: center;"></td>
<td colspan="4" style="text-align: center;"></td>
<td colspan="4" style="text-align: right;">{{fecha}}</td>
</tr>
</tbody>
</table>
<table class="bodertabla">
<thead>
<tr>
<th colspan="15" style="padding: 10px; border: 1px solid black">
PRODUCTO REGISTRADO EN EL INVENTARIO
</th>
</tr>
</thead>
<thead>
<tr>
<th colspan="3">PRODUCTO</th>
<th colspan="3">MODELO</th>
<th colspan="3">CANTIDAD</th>
<th colspan="3">PRECIO</th>
<th colspan="3">TOTAL</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="3" style="width: auto; text-align: center;">{{producto.nombre}}</td>
<td colspan="3" style="width: auto; text-align: center;">{{producto.modelo}}</td>
<td colspan="3" style="width: auto; text-align: center;">{{producto.cantidad}}</td>
<td colspan="3" style="width: auto; text-align: center;">{{producto.precio}}</td>
<td colspan="3" style="width: auto; text-align: center;">{{producto.total}}</td>
</tr>
</tr>
<thead>
<tr>
<th colspan="15" style="padding: 10px;">SERIAL DEL PRODUCTO</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="15">{{producto.serial}}</td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="15" style="padding: 10px;" style="width: auto;">DESCRIPCIÓN</th>
</tr>
</thead>
<tbody>
<tr>
<td colspan="15">{{producto.descripcion}}</td>
</tr>
</tbody>
</table>
<table>
<tbody>
<tr>
<td colspan="5" style="height: 150px;"></td>
<td colspan="5"></td>
<td colspan="5"></td>
</tr>
</tbody>
<thead>
<tr>
<th colspan="5" style="padding: 10px;">FIRMA1</th>
<th colspan="5" style="padding: 10px;">FIRMA2</th>
<th colspan="5" style="padding: 10px;">FIRMA3</th>
</tr>
</thead>
</table>
</body>
</html>