mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 06:30:59 +01:00
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'];
|
||||
unset($record['info_link_id']);
|
||||
}
|
||||
// If contact is set and not an ID, find it. Use quotes for exact match.
|
||||
if($record['info_contact'] && !is_numeric($record['info_contact']))
|
||||
// If contact or from is set and not an ID, find it. Use quotes for exact match.
|
||||
foreach(['info_from','info_contact'] as $field)
|
||||
{
|
||||
$contacts = Link::query('addressbook','"'.$record['info_contact'].'"');
|
||||
if($contacts)
|
||||
if ($record[$field] && is_string($record[$field]))
|
||||
{
|
||||
$record['info_contact'] = array(
|
||||
'id' => array_key_first($contacts),
|
||||
'app' => 'addressbook'
|
||||
);
|
||||
$contacts = Link::query('addressbook', '"' . $record[$field] . '"');
|
||||
if ($contacts)
|
||||
{
|
||||
$record['info_contact'] = array(
|
||||
'id' => array_key_first($contacts),
|
||||
'app' => 'addressbook'
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
// Special values
|
||||
|
Loading…
Reference in New Issue
Block a user