4 Commits

Author SHA1 Message Date
BOHA
fe44a2b12d 1.4.8 2026-04-02 12:55:24 +02:00
BOHA
8a9239311d feat: invoice PDF — larger fonts, order number and date in dates column
- Base font 9pt→10pt, all sub-elements scaled proportionally
- Order number and date shown in dates column when invoice linked to order
- Uses customer_order_number with fallback to internal order_number

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 12:55:24 +02:00
BOHA
cd25cd6ee4 1.4.7 2026-04-02 12:31:51 +02:00
BOHA
967fbba2a4 fix: invoice PDF footer — single line with space for signatures
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-02 12:31:51 +02:00
3 changed files with 35 additions and 29 deletions

4
package-lock.json generated
View File

@@ -1,12 +1,12 @@
{ {
"name": "app-ts", "name": "app-ts",
"version": "1.4.6", "version": "1.4.8",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "app-ts", "name": "app-ts",
"version": "1.4.6", "version": "1.4.8",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@dnd-kit/core": "^6.3.1", "@dnd-kit/core": "^6.3.1",

View File

@@ -1,6 +1,6 @@
{ {
"name": "app-ts", "name": "app-ts",
"version": "1.4.6", "version": "1.4.8",
"description": "", "description": "",
"main": "dist/server.js", "main": "dist/server.js",
"scripts": { "scripts": {

View File

@@ -284,6 +284,7 @@ export default async function invoicesPdfRoutes(
> | null; > | null;
let orderNumber = ""; let orderNumber = "";
let orderDate = "";
if (invoice.order_id) { if (invoice.order_id) {
const orderRow = await prisma.orders.findUnique({ const orderRow = await prisma.orders.findUnique({
where: { id: invoice.order_id }, where: { id: invoice.order_id },
@@ -299,6 +300,9 @@ export default async function invoicesPdfRoutes(
orderRow.customer_order_number || orderRow.order_number || "", orderRow.customer_order_number || orderRow.order_number || "",
), ),
); );
if (orderRow.created_at) {
orderDate = formatDate(orderRow.created_at);
}
} }
} }
@@ -496,7 +500,7 @@ export default async function invoicesPdfRoutes(
* { margin: 0; padding: 0; box-sizing: border-box; } * { margin: 0; padding: 0; box-sizing: border-box; }
html, body { html, body {
font-family: "Segoe UI", Tahoma, Arial, sans-serif; font-family: "Segoe UI", Tahoma, Arial, sans-serif;
font-size: 9pt; font-size: 10pt;
color: #1a1a1a; color: #1a1a1a;
width: 180mm; width: 180mm;
} }
@@ -568,7 +572,7 @@ export default async function invoicesPdfRoutes(
background: #f5f5f5; background: #f5f5f5;
} }
.address-label { .address-label {
font-size: 7pt; font-size: 8pt;
font-weight: 700; font-weight: 700;
color: #de3a3a; color: #de3a3a;
text-transform: uppercase; text-transform: uppercase;
@@ -583,7 +587,7 @@ export default async function invoicesPdfRoutes(
margin-bottom: 1mm; margin-bottom: 1mm;
} }
.address-line { .address-line {
font-size: 8pt; font-size: 9pt;
color: #444; color: #444;
line-height: 1.5; line-height: 1.5;
} }
@@ -593,7 +597,7 @@ export default async function invoicesPdfRoutes(
.info-row { .info-row {
display: flex; display: flex;
align-items: baseline; align-items: baseline;
font-size: 8pt; font-size: 9pt;
padding: 1mm 0; padding: 1mm 0;
border-bottom: 0.5pt solid #f0f0f0; border-bottom: 0.5pt solid #f0f0f0;
} }
@@ -614,7 +618,7 @@ export default async function invoicesPdfRoutes(
/* VS/KS blok */ /* VS/KS blok */
.vs-block { .vs-block {
font-size: 8pt; font-size: 9pt;
line-height: 1.4; line-height: 1.4;
padding-top: 2mm; padding-top: 2mm;
} }
@@ -623,7 +627,7 @@ export default async function invoicesPdfRoutes(
.billing-label { .billing-label {
font-weight: 700; font-weight: 700;
color: #1a1a1a; color: #1a1a1a;
font-size: 9pt; font-size: 10pt;
padding: 2mm 0 1mm 0; padding: 2mm 0 1mm 0;
border-bottom: 1.5pt solid #de3a3a; border-bottom: 1.5pt solid #de3a3a;
margin-bottom: 0; margin-bottom: 0;
@@ -635,11 +639,11 @@ export default async function invoicesPdfRoutes(
width: 100%; width: 100%;
table-layout: fixed; table-layout: fixed;
border-collapse: collapse; border-collapse: collapse;
font-size: 8pt; font-size: 9pt;
margin-bottom: 2mm; margin-bottom: 2mm;
} }
table.items thead th { table.items thead th {
font-size: 8pt; font-size: 9pt;
font-weight: 600; font-weight: 600;
color: #646464; color: #646464;
padding: 6px 8px; padding: 6px 8px;
@@ -663,10 +667,10 @@ export default async function invoicesPdfRoutes(
table.items tbody td.row-num { table.items tbody td.row-num {
text-align: center; text-align: center;
color: #969696; color: #969696;
font-size: 8pt; font-size: 9pt;
} }
table.items tbody td.desc { table.items tbody td.desc {
font-size: 8pt; font-size: 9pt;
font-weight: 600; font-weight: 600;
color: #1a1a1a; color: #1a1a1a;
} }
@@ -688,7 +692,7 @@ export default async function invoicesPdfRoutes(
display: flex; display: flex;
justify-content: space-between; justify-content: space-between;
align-items: baseline; align-items: baseline;
font-size: 8.5pt; font-size: 9.5pt;
color: #1a1a1a; color: #1a1a1a;
margin-bottom: 2mm; margin-bottom: 2mm;
} }
@@ -700,7 +704,7 @@ export default async function invoicesPdfRoutes(
align-items: baseline; align-items: baseline;
} }
.totals .grand .label { .totals .grand .label {
font-size: 9.5pt; font-size: 10.5pt;
font-weight: 400; font-weight: 400;
color: #1a1a1a; color: #1a1a1a;
align-self: center; align-self: center;
@@ -714,14 +718,14 @@ export default async function invoicesPdfRoutes(
} }
.totals .currency-note { .totals .currency-note {
text-align: right; text-align: right;
font-size: 7.5pt; font-size: 8pt;
color: #1a1a1a; color: #1a1a1a;
margin-top: 2mm; margin-top: 2mm;
} }
/* Vystavil */ /* Vystavil */
.issued-by { .issued-by {
font-size: 8pt; font-size: 9pt;
margin: 2mm 0; margin: 2mm 0;
line-height: 1.4; line-height: 1.4;
} }
@@ -729,7 +733,7 @@ export default async function invoicesPdfRoutes(
/* Upozorneni */ /* Upozorneni */
.notice { .notice {
font-size: 7pt; font-size: 8pt;
color: #1a1a1a; color: #1a1a1a;
margin: 2mm 0; margin: 2mm 0;
line-height: 1.3; line-height: 1.3;
@@ -751,11 +755,11 @@ export default async function invoicesPdfRoutes(
.recap-section table { .recap-section table {
border-collapse: collapse; border-collapse: collapse;
font-size: 8pt; font-size: 9pt;
flex: 1; flex: 1;
} }
.recap-section table th { .recap-section table th {
font-size: 7.5pt; font-size: 8pt;
font-weight: 600; font-weight: 600;
color: #555; color: #555;
padding: 3px 6px; padding: 3px 6px;
@@ -769,7 +773,7 @@ export default async function invoicesPdfRoutes(
} }
.recap-section table td.center { text-align: center; } .recap-section table td.center { text-align: center; }
.recap-section table td.cnb-rate { .recap-section table td.cnb-rate {
font-size: 7pt; font-size: 8pt;
color: #888; color: #888;
text-align: right; text-align: right;
border-bottom: none; border-bottom: none;
@@ -779,13 +783,14 @@ export default async function invoicesPdfRoutes(
/* Prevzal / razitko */ /* Prevzal / razitko */
.footer-row { .footer-row {
display: flex; display: flex;
justify-content: space-between;
margin-top: 4mm; margin-top: 4mm;
font-size: 8pt; font-size: 9pt;
}
.footer-row .col {
flex: 1;
border-top: 0.5pt solid #aaa; border-top: 0.5pt solid #aaa;
padding-top: 2mm; padding-top: 2mm;
min-height: 15mm;
}
.footer-row .col {
font-weight: 600; font-weight: 600;
color: #555; color: #555;
} }
@@ -793,13 +798,13 @@ export default async function invoicesPdfRoutes(
/* Poznamky */ /* Poznamky */
.invoice-notes { .invoice-notes {
margin-top: 4mm; margin-top: 4mm;
font-size: 9pt; font-size: 10pt;
line-height: 1.5; line-height: 1.5;
color: #1a1a1a; color: #1a1a1a;
} }
.invoice-notes-label { .invoice-notes-label {
font-weight: 600; font-weight: 600;
font-size: 8pt; font-size: 9pt;
text-transform: uppercase; text-transform: uppercase;
color: #555; color: #555;
margin-bottom: 1mm; margin-bottom: 1mm;
@@ -888,8 +893,7 @@ ${indentCSS}
<div class="info-row"><span class="lbl">${escapeHtml(t.account_no)}</span> <span class="val">${escapeHtml(invoice.bank_account)}</span></div> <div class="info-row"><span class="lbl">${escapeHtml(t.account_no)}</span> <span class="val">${escapeHtml(invoice.bank_account)}</span></div>
<div class="vs-block"> <div class="vs-block">
${escapeHtml(t.var_symbol)} <strong>${invoiceNumber}</strong> ${escapeHtml(t.var_symbol)} <strong>${invoiceNumber}</strong>
&nbsp;&nbsp;&nbsp; ${escapeHtml(t.const_symbol)} <strong>${escapeHtml(invoice.constant_symbol)}</strong><br> &nbsp;&nbsp;&nbsp; ${escapeHtml(t.const_symbol)} <strong>${escapeHtml(invoice.constant_symbol)}</strong>
${orderNumber ? `${escapeHtml(t.order_no)} ${orderNumber}` : ""}
</div> </div>
</td> </td>
<td> <td>
@@ -897,6 +901,8 @@ ${indentCSS}
<div class="info-row"><span class="lbl">${escapeHtml(t.due_date)}</span> <span class="val">${escapeHtml(formatDate(invoice.due_date))}</span></div> <div class="info-row"><span class="lbl">${escapeHtml(t.due_date)}</span> <span class="val">${escapeHtml(formatDate(invoice.due_date))}</span></div>
<div class="info-row"><span class="lbl">${escapeHtml(t.tax_date)}</span> <span class="val">${escapeHtml(formatDate(invoice.tax_date))}</span></div> <div class="info-row"><span class="lbl">${escapeHtml(t.tax_date)}</span> <span class="val">${escapeHtml(formatDate(invoice.tax_date))}</span></div>
<div class="info-row"><span class="lbl">${escapeHtml(t.payment_method)}</span> <span class="val">${escapeHtml(invoice.payment_method)}</span></div> <div class="info-row"><span class="lbl">${escapeHtml(t.payment_method)}</span> <span class="val">${escapeHtml(invoice.payment_method)}</span></div>
${orderNumber ? `<div class="info-row"><span class="lbl">${lang === "cs" ? "Objednávka č.:" : "Order no.:"}</span> <span class="val">${orderNumber}</span></div>` : ""}
${orderDate ? `<div class="info-row"><span class="lbl">${lang === "cs" ? "Objednávka ze dne:" : "Order date:"}</span> <span class="val">${escapeHtml(orderDate)}</span></div>` : ""}
</td> </td>
</tr> </tr>
</table> </table>