template fix
This commit is contained in:
parent
5c86bd56aa
commit
10380f26c4
|
|
@ -1375,7 +1375,7 @@ app.get('/api/invoices/:id/pdf', async (req, res) => {
|
|||
itemsHTML += `
|
||||
<tr class="footer-row">
|
||||
<td colspan="3" class="downpayment-label" style="font-size: 12px; color: #059669;">Downpayment:</td>
|
||||
<td class="total-amount" style="font-size: 12px; color: #059669;">-$${amountPaid.toFixed(2)}</td>
|
||||
<td class="total-amount" style="color: #059669;">-$${amountPaid.toFixed(2)}</td>
|
||||
</tr>
|
||||
<tr class="footer-row">
|
||||
<td colspan="3" class="total-label" style="font-weight: bold; font-size: 14px; border-top: 2px solid #333; padding-top: 8px;">BALANCE DUE:</td>
|
||||
|
|
@ -1618,7 +1618,7 @@ app.get('/api/invoices/:id/html', async (req, res) => {
|
|||
itemsHTML += `
|
||||
<tr class="footer-row">
|
||||
<td colspan="3" class="downpayment-label" style="font-size: 12px; color: #059669;">Downpayment:</td>
|
||||
<td class="total-amount" style="font-size: 12px; color: #059669;">-$${amountPaid.toFixed(2)}</td>
|
||||
<td class="total-amount" style="color: #059669;">-$${amountPaid.toFixed(2)}</td>
|
||||
</tr>
|
||||
<tr class="footer-row">
|
||||
<td colspan="3" class="total-label" style="font-weight: bold; font-size: 14px; border-top: 2px solid #333; padding-top: 8px;">BALANCE DUE:</td>
|
||||
|
|
|
|||
Loading…
Reference in New Issue