mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-07-08 17:44:32 -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){
|
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