From 66efb49eeb536c275331986b8c56bed3020a1055 Mon Sep 17 00:00:00 2001 From: David Bomba Date: Wed, 26 Jul 2023 08:31:22 +1000 Subject: [PATCH] Fixes for company tax rate --- app/Jobs/Company/CompanyTaxRate.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Jobs/Company/CompanyTaxRate.php b/app/Jobs/Company/CompanyTaxRate.php index 8fbc6a3e4452..886704fa358e 100644 --- a/app/Jobs/Company/CompanyTaxRate.php +++ b/app/Jobs/Company/CompanyTaxRate.php @@ -52,7 +52,7 @@ class CompanyTaxRate implements ShouldQueue /** State must be calculated else default to the company state for taxes */ if(array_key_exists($this->company->settings->state, USStates::get())) { - $calculated_state = $this->company->setting->state; + $calculated_state = $this->company->settings->state; } else {