POD fix: Rose Syntax im Beispiel
authorBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 27 Jan 2021 11:18:26 +0000 (12:18 +0100)
committerBernd Bleßmann <bernd@kivitendo-premium.de>
Wed, 27 Jan 2021 11:20:05 +0000 (12:20 +0100)
Vergleichsoperatoren werden als Hash-Ref angegeben.

SL/Controller/Helper/ParseFilter.pm

index 8b68ee5..f91d671 100644 (file)
@@ -297,8 +297,8 @@ customer. L<Rose::DB::Object> allows you to search for these by filtering them p
 
   query => [
     'customer.name'          => 'John Doe',
-    'department.description' => [ ilike => '%Sales%' ],
-    'orddate'                => [ lt    => DateTime->today ],
+    'department.description' => { ilike => '%Sales%' },
+    'orddate'                => { lt    => DateTime->today },
   ]
 
 Unfortunately, if you specify them in your form as these strings, the form