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)}