diff --git a/app/Jobs/Util/Import.php b/app/Jobs/Util/Import.php index ca5b45dd00b0..3722127f5d65 100644 --- a/app/Jobs/Util/Import.php +++ b/app/Jobs/Util/Import.php @@ -237,7 +237,8 @@ class Import implements ShouldQueue //company size check if ($this->company->invoices()->count() > 500 || $this->company->products()->count() > 500 || $this->company->clients()->count() > 500) { - $this->company->is_large = true; + // $this->company->is_large = true; + $this->company->account->companies()->update(['is_large' => true]); }