diff --git a/VERSION.txt b/VERSION.txt index 3f60ebfc9e81..5a2b58558964 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 6e9cce110e71..d86dd9275aee 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 70d222f97f56..b1005e7eb7ac 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', ''),