1
0
mirror of https://github.com/EGroupware/egroupware.git synced 2025-07-14 21:36:03 +02:00

Parse project number into project ID when importing

This commit is contained in:
nathangray
2016-09-20 09:42:53 -06:00
parent c640d4096a
commit 1e1447e135

@ -305,6 +305,11 @@ class timesheet_import_csv implements importexport_iface_import_plugin
list($lastname,$firstname,$org_name) = explode(',',$record['addressbook']); list($lastname,$firstname,$org_name) = explode(',',$record['addressbook']);
$record['addressbook'] = self::addr_id($lastname,$firstname,$org_name); $record['addressbook'] = self::addr_id($lastname,$firstname,$org_name);
} }
if ($record['pm_id'] && !is_numeric($record['pm_id']))
{
$pms = Link::query('projectmanager',$record['pm_id']);
$record['pm_id'] = key($pms);
}
if ( $_definition->plugin_options['conditions'] ) if ( $_definition->plugin_options['conditions'] )
{ {