From 39de7f7340442adc806110ceee8247e01b400a63 Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Fri, 27 Feb 2026 11:46:31 -0600 Subject: [PATCH] quote --- server.js | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/server.js b/server.js index 92b099e..0b3143d 100644 --- a/server.js +++ b/server.js @@ -1232,19 +1232,21 @@ app.get('/api/quotes/:id/pdf', async (req, res) => { // Totals itemsHTML += ` - Subtotal: +  : + Subtotal: $${formatMoney(quote.subtotal)} `; if (!quote.tax_exempt) { itemsHTML += ` - Tax (${quote.tax_rate}%): +  : + Tax (${quote.tax_rate}%): $${formatMoney(quote.tax_amount)} `; } itemsHTML += ` - This quote is valid for 14 days. We appreciate your business + This quote is valid for 14 days. We appreciate your business TOTAL: $${formatMoney(quote.total)}