mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 18:04:31 -04:00
Fixes for missing properties
This commit is contained in:
parent
f09e460fc4
commit
d9ec77003d
@ -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…
x
Reference in New Issue
Block a user