From 3ed2582a9ba8c23f583e59d2ff951b12a3e61740 Mon Sep 17 00:00:00 2001 From: johnnyq Date: Thu, 15 Jan 2026 14:09:03 -0500 Subject: [PATCH] Remove TaxID from packing slip --- agent/post/invoice.php | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/agent/post/invoice.php b/agent/post/invoice.php index 667e603f..53a322b1 100644 --- a/agent/post/invoice.php +++ b/agent/post/invoice.php @@ -989,12 +989,6 @@ if (isset($_GET['export_invoice_packing_slip'])) { $company_phone = nullable_htmlentities(formatPhoneNumber($row['company_phone'], $company_phone_country_code)); $company_email = nullable_htmlentities($row['company_email']); $company_website = nullable_htmlentities($row['company_website']); - $company_tax_id = nullable_htmlentities($row['company_tax_id']); - if ($config_invoice_show_tax_id && !empty($company_tax_id)) { - $company_tax_id_display = "Tax ID: $company_tax_id"; - } else { - $company_tax_id_display = ""; - } $company_logo = nullable_htmlentities($row['company_logo']); require_once("../plugins/TCPDF/tcpdf.php"); @@ -1029,7 +1023,7 @@ if (isset($_GET['export_invoice_packing_slip'])) { ' . $client_name . ' - ' . nl2br("$company_address\n$company_city $company_state $company_zip\n$company_country\n$company_phone\n$company_website\n$company_tax_id_display") . ' + ' . nl2br("$company_address\n$company_city $company_state $company_zip\n$company_country\n$company_phone\n$company_website") . ' ' . nl2br("$location_address\n$location_city $location_state $location_zip\n$location_country\n$contact_email\n$contact_phone") . '
';