This commit is contained in:
Andreas Knuth 2026-02-27 11:41:36 -06:00
parent cc19cfcfad
commit bdfd096e99
1 changed files with 4 additions and 2 deletions

View File

@ -1244,7 +1244,8 @@ app.get('/api/quotes/:id/pdf', async (req, res) => {
} }
itemsHTML += ` itemsHTML += `
<tr class="footer-row"> <tr class="footer-row">
<td colspan="3" class="total-label" style="font-size: 16px;">TOTAL:</td> <td colspan="2" class="total-label" style="font-size: 12px;">This quote is valid for 14 days. We appreciate your business</td>
<td class="total-label" style="font-size: 16px;">TOTAL:</td>
<td class="total-amount" style="font-size: 16px;">$${formatMoney(quote.total)}</td> <td class="total-amount" style="font-size: 16px;">$${formatMoney(quote.total)}</td>
</tr> </tr>
<tr class="footer-row"> <tr class="footer-row">
@ -1504,7 +1505,8 @@ app.get('/api/quotes/:id/html', async (req, res) => {
} }
itemsHTML += ` itemsHTML += `
<tr class="footer-row"> <tr class="footer-row">
<td colspan="3" class="total-label" style="font-size: 16px;">TOTAL:</td> <td colspan="2" class="total-label" style="font-size: 12px;">This quote is valid for 14 days. We appreciate your business</td>
<td class="total-label" style="font-size: 16px;">TOTAL:</td>
<td class="total-amount" style="font-size: 16px;">$${formatMoney(quote.total)}</td> <td class="total-amount" style="font-size: 16px;">$${formatMoney(quote.total)}</td>
</tr> </tr>
<tr class="footer-row"> <tr class="footer-row">