Minor fixes

This commit is contained in:
David Bomba 2022-05-19 17:41:53 +10:00
parent 053b8a4319
commit c172a5ed3b

View File

@ -237,7 +237,6 @@ class Import implements ShouldQueue
//company size check //company size check
if ($this->company->invoices()->count() > 500 || $this->company->products()->count() > 500 || $this->company->clients()->count() > 500) { if ($this->company->invoices()->count() > 500 || $this->company->products()->count() > 500 || $this->company->clients()->count() > 500) {
// $this->company->is_large = true;
$this->company->account->companies()->update(['is_large' => true]); $this->company->account->companies()->update(['is_large' => true]);
} }