351 lines
9.1 KiB
Handlebars
351 lines
9.1 KiB
Handlebars
<!DOCTYPE html>
|
|
<html lang="es">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
|
|
<title>Factura</title>
|
|
<style type="text/css">{{ asset 'tailwind.min.css' }}</style>
|
|
|
|
<style type="text/css">
|
|
header {
|
|
width: 100%;
|
|
margin-bottom: 15px;
|
|
}
|
|
|
|
/* Fila superior */
|
|
.top-header {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
width: 100%;
|
|
}
|
|
|
|
/* Bloque izquierdo */
|
|
.left-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: flex-start;
|
|
width: 75%;
|
|
}
|
|
|
|
.logo {
|
|
height: 80px;
|
|
margin-bottom: 5px;
|
|
}
|
|
|
|
.company-text {
|
|
font-size: 7pt;
|
|
line-height: 1.2;
|
|
padding-left: 10px;
|
|
text-align: right;
|
|
}
|
|
|
|
/* Bloque derecho */
|
|
.right-block {
|
|
display: flex;
|
|
flex-direction: column;
|
|
/* uno encima de otro */
|
|
align-items: flex-end;
|
|
/* o flex-start / center según quieras */
|
|
justify-content: flex-start;
|
|
width: 25%;
|
|
padding: 4px;
|
|
}
|
|
|
|
.factura-img {
|
|
height: 45px;
|
|
}
|
|
|
|
.factura-text {
|
|
font-size: 26px;
|
|
font-weight: bolder;
|
|
}
|
|
|
|
/* Fila inferior */
|
|
.bottom-header {
|
|
margin-top: 10px;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
gap: 20px;
|
|
}
|
|
|
|
/* Cuadros */
|
|
.info-box {
|
|
width: 40%;
|
|
}
|
|
|
|
.info-dire {
|
|
width: 70%;
|
|
}
|
|
|
|
/* ---------------------------- */
|
|
/* ESTRUCTURA BODY */
|
|
/* ---------------------------- */
|
|
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 40px;
|
|
color: #333;
|
|
font-size: 9pt;
|
|
line-height: 1.5;
|
|
}
|
|
|
|
table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
margin-top: 0px;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
/* Anchos por columna */
|
|
.col-concepto { width: 75%; text-align: left; }
|
|
.col-cantidad { width: 5%; text-align: center;}
|
|
.col-precio { width: 10%; text-align: right;}
|
|
.col-total { width: 10%; text-align: right;}
|
|
|
|
table th,
|
|
table td {
|
|
border-top: 0px solid;
|
|
border-left: 1px solid #000;
|
|
border-right: 1px solid #000;
|
|
border-bottom: 0px solid;
|
|
padding: 3px 10px;
|
|
text-align: left;
|
|
vertical-align: top;
|
|
}
|
|
|
|
table th {
|
|
border-bottom: 1px solid #000;
|
|
}
|
|
|
|
.totals {
|
|
margin-top: 20px;
|
|
width: 100%;
|
|
}
|
|
|
|
.totals td {
|
|
padding: 5px 10px;
|
|
}
|
|
|
|
.totals td.label {
|
|
text-align: right;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.resume-table {
|
|
width: 100%;
|
|
border-collapse: collapse;
|
|
font-size: 9pt;
|
|
font-family: Tahoma, sans-serif;
|
|
}
|
|
|
|
/* Columna izquierda (notas / forma de pago) */
|
|
.left-col {
|
|
width: 70%;
|
|
vertical-align: top;
|
|
padding: 10px;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
/* Etiquetas */
|
|
.resume-table .label {
|
|
width: 15%;
|
|
padding: 6px 8px;
|
|
text-align: right;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
/* Valores numéricos */
|
|
.resume-table .value {
|
|
width: 15%;
|
|
padding: 6px 8px;
|
|
text-align: right;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
/* Total factura */
|
|
.total-row .label,
|
|
.total-row .value {
|
|
background-color: #eee;
|
|
font-size: 9pt;
|
|
border: 1px solid #000;
|
|
}
|
|
|
|
.total {
|
|
color: #d10000;
|
|
font-weight: bold;
|
|
text-align: right;
|
|
}
|
|
|
|
.resume-table .empty {
|
|
border: 1px solid transparent;
|
|
}
|
|
|
|
footer {
|
|
margin-top: 40px;
|
|
font-size: 8px;
|
|
}
|
|
|
|
@media print {
|
|
* {
|
|
-webkit-print-color-adjust: exact;
|
|
}
|
|
|
|
thead {
|
|
display: table-header-group;
|
|
}
|
|
|
|
tfoot {
|
|
display: table-footer-group;
|
|
}
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<header>
|
|
|
|
<!-- FILA SUPERIOR: logo + dirección / imagen factura -->
|
|
<div class="top-header">
|
|
<div class="left-block">
|
|
<div style="display: flex; align-items: center; gap: 4px; align-content: stretch">
|
|
<img src="{{asset 'logo_alonsoysal.jpg'}}" alt="Logo Alonso y Sal" class="logo" />
|
|
{{#if verifactu.qr_code}}
|
|
<div style="flex-grow: 0; flex-shrink: 0; flex-basis:90px;">
|
|
<img src="{{verifactu.qr_code}}" alt="QR factura" style="width: 90px; height: 90px;" />
|
|
</div>
|
|
<div style="text-align: left; flex-grow: 1; flex-shrink: 1; flex-basis: auto;">
|
|
QR tributario factura verificable en sede electronica de AEAT VERI*FACTU
|
|
</div>
|
|
{{/if}}
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
<div class="right-block">
|
|
<div>
|
|
<div class="company-text">
|
|
<p><strong>Cocinas y Baños</strong><br/>Calle Vía Carpetana 340<br/>28047 Madrid</p>
|
|
<p>Teléfono: 914 652 842<br/>WhatsApp: 607 528 495<br/>Email: <a href="mailto:info@alonsoysal.com">info@alonsoysal.com</a><br/>Web: <a href="https://www.acanainteriorismo.com" target="_blank">www.alonsoysal.com</a></p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- FILA INFERIOR: cuadro factura + cuadro cliente -->
|
|
<div class="bottom-header">
|
|
|
|
<div class="info-box">
|
|
<p class="factura-text">FACTURA</p>
|
|
<p>Factura nº: {{series}}{{invoice_number}}</p>
|
|
<p>Fecha: {{invoice_date}}</p>
|
|
</div>
|
|
|
|
<div class="info-box info-dire">
|
|
<h2 style="font-weight:600; text-transform:uppercase; margin-bottom:0.25rem;">{{recipient.name}}</h2>
|
|
<p>{{recipient.tin}}</p>
|
|
<p>{{recipient.street}}</p>
|
|
<p>{{recipient.postal_code}} {{recipient.city}} {{recipient.province}}</p>
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</header>
|
|
|
|
<main id="main">
|
|
<section id="details">
|
|
|
|
<!-- Tu tabla -->
|
|
<table class="table-header">
|
|
<thead>
|
|
<tr>
|
|
<th class="col-concepto">Concepto</th>
|
|
<th class="col-cantidad">Cantidad</th>
|
|
<th class="col-precio">Precio unidad</th>
|
|
<th class="col-total">Importe total</th>
|
|
</tr>
|
|
</thead>
|
|
|
|
<tbody>
|
|
{{#each items}}
|
|
<tr>
|
|
<td>{{description}}</td>
|
|
<td style="width: 10px !important; text-align:right;">{{#if quantity}}{{quantity}}{{else}} {{/if}}</td>
|
|
<td style="text-align:right;">{{#if unit_amount}}{{unit_amount}}{{else}} {{/if}}</td>
|
|
<td style="text-align:right;">{{#if taxable_amount}}{{taxable_amount}}{{else}} {{/if}}</td>
|
|
</td>
|
|
</tr>
|
|
{{/each}}
|
|
|
|
<tr class="resume-table">
|
|
<!-- Columna izquierda: notas y forma de pago -->
|
|
<td class="left-col" rowspan="10">
|
|
{{#if payment_method}}
|
|
<p><strong>Forma de pago:</strong> {{payment_method}}</p>
|
|
{{/if}}
|
|
|
|
{{#if notes}}
|
|
<p style="margin-top:0.5rem;"><strong>Notas:</strong> {{notes}}</p>
|
|
{{/if}}
|
|
</td>
|
|
<!-- Columna derecha: totales -->
|
|
{{#if discount_percentage}}
|
|
<td class="label">Importe neto</td>
|
|
<td class="value">{{subtotal_amount}}</td>
|
|
{{else}}
|
|
<td colspan="2" class="label">Base imponible</td>
|
|
<td colspan="2" class="value">{{taxable_amount}}</td>
|
|
{{/if}}
|
|
</tr>
|
|
|
|
{{#if discount_percentage}}
|
|
<tr class="resume-table">
|
|
<td class="label">Dto {{discount_percentage}}</td>
|
|
<td class="value">{{discount_amount.value}}</td>
|
|
</tr>
|
|
<tr class="resume-table">
|
|
<td colspan="2" class="label">Base imponible</td>
|
|
<td colspan="2" class="value">{{taxable_amount}}</td>
|
|
</tr>
|
|
{{/if}}
|
|
|
|
{{#each taxes}}
|
|
<tr class="resume-table">
|
|
<td class="label">{{tax_name}}</td>
|
|
<td class="value">{{taxes_amount}}</td>
|
|
</tr>
|
|
{{/each}}
|
|
|
|
<tr class="total-row">
|
|
<td class="label"><strong>Total factura</strong></td>
|
|
<td colspan="2" class="value total"><strong>{{total_amount}}</strong></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</section>
|
|
</main>
|
|
|
|
|
|
<footer id="footer" style="margin-top:1rem; border-top:1px solid #000000;">
|
|
<aside style="margin-top: 1rem;">
|
|
<tfoot>
|
|
<p style="text-align: center;">Insc. en el Reg. Merc. de Madrid, Tomo 31.839, Libro 0, Folio 191, Sección 8, Hoja
|
|
M-572991
|
|
CIF: B86913910</p>
|
|
<p style="text-align: left; font-size: 6pt;">Información en protección de datos:<br />De conformidad con lo
|
|
dispuesto en el RGPD y LOPDGDD,
|
|
informamos que los datos personales serán tratados por
|
|
ALISO DESIGN S.L para cumplir con la obligación tributaria de emitir facturas. Podrá solicitar más
|
|
información, y ejercer sus derechos escribiendo a info@acanainteriorismo.com o mediante correo postal a la
|
|
dirección CALLE
|
|
LA FUNDICION 27 POL. IND. SANTA ANA (28522) RIVAS-VACIAMADRID, MADRID. Para el ejercicio de sus derechos, en
|
|
caso
|
|
de que sea necesario, se le solicitará documento que acredite su identidad. Si siente vulnerados sus derechos
|
|
puede presentar una reclamación ante la AEPD, en su web: www.aepd.es.</p>
|
|
</tfoot>
|
|
</aside>
|
|
</footer>
|
|
|
|
</body>
|
|
</html> |