mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-12-22 23:00:56 +01:00
Fix for import / update search for existing record. If new record key (ex ID) was not set, search matched all
This commit is contained in:
parent
8a102f94e8
commit
766391754c
@ -184,9 +184,11 @@ class infolog_import_infologs_csv implements importexport_iface_import_plugin {
|
|||||||
|
|
||||||
if ( $_definition->plugin_options['conditions'] ) {
|
if ( $_definition->plugin_options['conditions'] ) {
|
||||||
foreach ( $_definition->plugin_options['conditions'] as $condition ) {
|
foreach ( $_definition->plugin_options['conditions'] as $condition ) {
|
||||||
|
$results = array();
|
||||||
switch ( $condition['type'] ) {
|
switch ( $condition['type'] ) {
|
||||||
// exists
|
// exists
|
||||||
case 'exists' :
|
case 'exists' :
|
||||||
|
if($record[$condition['string']]) {
|
||||||
$results = $this->boinfolog->search(
|
$results = $this->boinfolog->search(
|
||||||
//array( $condition['string'] => $record[$condition['string']],),
|
//array( $condition['string'] => $record[$condition['string']],),
|
||||||
'',
|
'',
|
||||||
@ -194,8 +196,9 @@ class infolog_import_infologs_csv implements importexport_iface_import_plugin {
|
|||||||
'', '', '', false, 'AND', false,
|
'', '', '', false, 'AND', false,
|
||||||
array( $condition['string'] => $record[$condition['string']],)
|
array( $condition['string'] => $record[$condition['string']],)
|
||||||
);
|
);
|
||||||
|
}
|
||||||
|
|
||||||
if ( is_array( $results ) && count( array_keys( $results ) >= 1 ) ) {
|
if ( is_array( $results ) && count( array_keys( $results )) >= 1) {
|
||||||
// apply action to all records matching this exists condition
|
// apply action to all records matching this exists condition
|
||||||
$action = $condition['true'];
|
$action = $condition['true'];
|
||||||
foreach ( (array)$results as $contact ) {
|
foreach ( (array)$results as $contact ) {
|
||||||
|
Loading…
Reference in New Issue
Block a user