Change header from Faktura to Fakturaunderlag

This commit is contained in:
2026-03-23 20:08:29 +01:00
parent d6f3e19215
commit a279c653e0

View File

@@ -1,7 +1,7 @@
<!DOCTYPE html>
<!doctype html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<head>
<meta charset="UTF-8" />
<title>Fakturaunderlag - Kund {{ customer.customer_number }}</title>
<style>
@page {
@@ -60,7 +60,8 @@
border-collapse: collapse;
font-size: 11px;
}
.summary-table th, .summary-table td {
.summary-table th,
.summary-table td {
padding: 5px 8px;
text-align: left;
}
@@ -100,7 +101,8 @@
border-collapse: collapse;
font-size: 11px;
}
th, td {
th,
td {
padding: 6px 8px;
text-align: left;
}
@@ -109,7 +111,9 @@
font-weight: bold;
border-bottom: 1px solid #ccc;
}
.amount, .volume, .price {
.amount,
.volume,
.price {
text-align: right;
}
.card-total {
@@ -133,11 +137,11 @@
margin-left: 20px;
}
</style>
</head>
<body>
</head>
<body>
<div class="header">
<div>
<h1>Faktura - Kund {{ customer.customer_number }}</h1>
<h1>Fakturaunderlag - Kund {{ customer.customer_number }}</h1>
<div>Period: {{ period }}</div>
</div>
<div class="meta">
@@ -194,7 +198,8 @@
<span>{{ card.transactions.len() }} transaktioner</span>
</div>
<div class="card-summary">
Summa: {{ card.total_amount }} Kr | Volym: {{ card.total_volume }} L
Summa: {{ card.total_amount }} Kr | Volym: {{ card.total_volume
}} L
</div>
<table>
<thead>
@@ -232,5 +237,5 @@
<div class="grand-total">
Totalsumma:<span>{{ customer.summary.grand_total }} Kr</span>
</div>
</body>
</body>
</html>