GetModels Filtered: neuer Modifer »any« für logisches oder
[kivitendo-erp.git] / SL / Controller / Helper / ParseFilter.pm
index e1b621f..0f73141 100644 (file)
@@ -125,7 +125,8 @@ sub _parse_filter {
     my ($type, $op)   = $key =~ m{:(.+)::(.+)};
 
     my $is_multi      = $key =~ s/:multi//;
-    my @value_tokens  = $is_multi ? parse_line('\s+', 0, $value) : ($value);
+    my $is_any        = $key =~ s/:any//;
+    my @value_tokens  = $is_multi || $is_any ? parse_line('\s+', 0, $value) : ($value);
 
     ($key, $method)   = split m{::}, $key, 2;
     ($key, @filters)  = split m{:},  $key;
@@ -146,7 +147,7 @@ sub _parse_filter {
 
     next unless defined $key;
 
-    push @result, $is_multi ? (and => [ @args ]) : @args;
+    push @result, $is_multi ? (and => [ @args ]) : $is_any ? (or => [ @args ]) : @args;
   }
   return \@result;
 }
@@ -297,11 +298,10 @@ customer. L<Rose::DB::Object> allows you to search for these by filtering them p
 
   query => [
     'customer.name'          => 'John Doe',
-    'department.description' => [ like => '%Sales%' ],
+    'department.description' => { ilike => '%Sales%' },
     'orddate'                => { lt    => DateTime->today },
   ]
 
-
 Unfortunately, if you specify them in your form as these strings, the form
 parser will convert them into nested structures like this: