From 4c031c8f83b96fecca9acc45adffbbf187eda78b Mon Sep 17 00:00:00 2001 From: johnnyq Date: Mon, 21 Jul 2025 21:31:39 -0400 Subject: [PATCH] Increase the width for totals on invoices and Quotes PDF Exports --- guest/guest_post.php | 8 ++++---- post/user/invoice.php | 4 ++-- post/user/quote.php | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/guest/guest_post.php b/guest/guest_post.php index eebd873b..1daebfdd 100644 --- a/guest/guest_post.php +++ b/guest/guest_post.php @@ -371,8 +371,8 @@ if (isset($_GET['export_quote_pdf'])) { // Totals $html .= ' - - +
' . nl2br($quote_note) . ' + ' . nl2br($quote_note) . ' '; if ($quote_discount > 0) { @@ -590,8 +590,8 @@ if (isset($_GET['export_invoice_pdf'])) { // Totals $html .= '
Subtotal:' . numfmt_format_currency($currency_format, $sub_total, $quote_currency_code) . '
- - +
' . nl2br($invoice_note) . ' + ' . nl2br($invoice_note) . ' '; if ($invoice_discount > 0) { diff --git a/post/user/invoice.php b/post/user/invoice.php index 827d346f..06ac3731 100644 --- a/post/user/invoice.php +++ b/post/user/invoice.php @@ -2051,8 +2051,8 @@ if (isset($_GET['export_invoice_pdf'])) { // Totals $html .= '
Subtotal:' . numfmt_format_currency($currency_format, $sub_total, $invoice_currency_code) . '
- - +
' . nl2br($invoice_note) . ' + ' . nl2br($invoice_note) . ' '; if ($invoice_discount > 0) { diff --git a/post/user/quote.php b/post/user/quote.php index 84c3cea1..fb348f02 100644 --- a/post/user/quote.php +++ b/post/user/quote.php @@ -781,8 +781,8 @@ if (isset($_GET['export_quote_pdf'])) { // Totals $html .= '
Subtotal:' . numfmt_format_currency($currency_format, $sub_total, $invoice_currency_code) . '
- - +
' . nl2br($quote_note) . ' + ' . nl2br($quote_note) . ' '; if ($quote_discount > 0) {
Subtotal:' . numfmt_format_currency($currency_format, $sub_total, $quote_currency_code) . '