Fixes for missing properties
This commit is contained in:
parent
f09e460fc4
commit
d9ec77003d
1 changed files with 2 additions and 1 deletions
|
|
@ -490,7 +490,8 @@ class CompanyImport implements ShouldQueue
|
|||
|
||||
foreach($this->company_properties as $value){
|
||||
|
||||
$this->company->{$value} = $tmp_company->{$value};
|
||||
if(property_exists($tmp_company, $value))
|
||||
$this->company->{$value} = $tmp_company->{$value};
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue