forked from extern/egroupware
Infolog: When importing into info_contact or info_from, try to find & link the contact
This commit is contained in:
parent
c0fc66d51f
commit
c3ae524ed6
@ -260,16 +260,19 @@ class infolog_import_infologs_csv implements importexport_iface_import_plugin
|
|||||||
$record['info_contact'] = $record['info_link_id'];
|
$record['info_contact'] = $record['info_link_id'];
|
||||||
unset($record['info_link_id']);
|
unset($record['info_link_id']);
|
||||||
}
|
}
|
||||||
// If contact is set and not an ID, find it. Use quotes for exact match.
|
// If contact or from is set and not an ID, find it. Use quotes for exact match.
|
||||||
if($record['info_contact'] && !is_numeric($record['info_contact']))
|
foreach(['info_from','info_contact'] as $field)
|
||||||
{
|
{
|
||||||
$contacts = Link::query('addressbook','"'.$record['info_contact'].'"');
|
if ($record[$field] && is_string($record[$field]))
|
||||||
if($contacts)
|
|
||||||
{
|
{
|
||||||
$record['info_contact'] = array(
|
$contacts = Link::query('addressbook', '"' . $record[$field] . '"');
|
||||||
'id' => array_key_first($contacts),
|
if ($contacts)
|
||||||
'app' => 'addressbook'
|
{
|
||||||
);
|
$record['info_contact'] = array(
|
||||||
|
'id' => array_key_first($contacts),
|
||||||
|
'app' => 'addressbook'
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
// Special values
|
// Special values
|
||||||
|
Loading…
Reference in New Issue
Block a user