From a9c190bbf6cdbfe727f0adc3212d30d2b077ea2e Mon Sep 17 00:00:00 2001 From: Andreas Knuth Date: Fri, 27 Feb 2026 11:52:20 -0600 Subject: [PATCH] quote --- server.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/server.js b/server.js index 0b3143d..d26fbf3 100644 --- a/server.js +++ b/server.js @@ -1232,22 +1232,22 @@ 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 - TOTAL: + This quote is valid for 14 days. We appreciate your business + TOTAL $${formatMoney(quote.total)}