From b86d0a7c43f6b5e4bc137f6dc7c5211df03ea363 Mon Sep 17 00:00:00 2001 From: Hillel Coren Date: Fri, 24 Mar 2017 14:59:58 +0300 Subject: [PATCH] Merge inclusive tax fix --- app/Http/Controllers/InvoiceController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/InvoiceController.php b/app/Http/Controllers/InvoiceController.php index 640a6503f27c..18d562dfbedc 100644 --- a/app/Http/Controllers/InvoiceController.php +++ b/app/Http/Controllers/InvoiceController.php @@ -289,7 +289,7 @@ class InvoiceController extends BaseController $taxRateOptions = $account->present()->taxRateOptions; if ($invoice->exists) { foreach ($invoice->getTaxes() as $key => $rate) { - $key = '0 ' . $key; + $key = '0 ' . $key; // mark it as a standard exclusive rate option if (isset($taxRateOptions[$key])) { continue; }