From 1a6d4a611ff5cdcd56f9af943a4751be1af344ca Mon Sep 17 00:00:00 2001 From: David Bomba Date: Sat, 8 Apr 2023 08:32:38 +1000 Subject: [PATCH] v5.5.103 --- VERSION.txt | 2 +- app/Helpers/Invoice/InvoiceItemSum.php | 1 + config/ninja.php | 4 ++-- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/VERSION.txt b/VERSION.txt index 3f60ebfc9e..5a2b585589 100644 --- a/VERSION.txt +++ b/VERSION.txt @@ -1 +1 @@ -5.5.102 \ No newline at end of file +5.5.103 \ No newline at end of file diff --git a/app/Helpers/Invoice/InvoiceItemSum.php b/app/Helpers/Invoice/InvoiceItemSum.php index 6e9cce110e..d86dd9275a 100644 --- a/app/Helpers/Invoice/InvoiceItemSum.php +++ b/app/Helpers/Invoice/InvoiceItemSum.php @@ -141,6 +141,7 @@ class InvoiceItemSum //should we be filtering by client country here? do we need to reflect at the company <=> client level? if (in_array($this->client->country->iso_3166_2, $this->tax_jurisdictions)) { //only calculate for supported tax jurisdictions + $class = "App\DataMapper\Tax\\".$this->client->company->country()->iso_3166_2."\\Rule"; $tax_data = new Response($this->invoice->tax_data); diff --git a/config/ninja.php b/config/ninja.php index 70d222f97f..b1005e7eb7 100644 --- a/config/ninja.php +++ b/config/ninja.php @@ -14,8 +14,8 @@ return [ 'require_https' => env('REQUIRE_HTTPS', true), 'app_url' => rtrim(env('APP_URL', ''), '/'), 'app_domain' => env('APP_DOMAIN', 'invoicing.co'), - 'app_version' => '5.5.102', - 'app_tag' => '5.5.102', + 'app_version' => '5.5.103', + 'app_tag' => '5.5.103', 'minimum_client_version' => '5.0.16', 'terms_version' => '1.0.1', 'api_secret' => env('API_SECRET', ''),