From: Bernd Bleßmann Date: Wed, 27 Jan 2021 11:14:33 +0000 (+0100) Subject: Revert "POD fix: Rose Syntax" X-Git-Tag: kivitendo-mebil_0.1-0~9^2~505 X-Git-Url: http://wagnertech.de/git?a=commitdiff_plain;h=e2bfda48dec336d7c4b90a918c6d6d25c974f04c;p=kivitendo-erp.git Revert "POD fix: Rose Syntax" ilike gibt es doch. This reverts commit 95f21f71c1c5c2f6cf6a281a0174d8f247be1135. --- diff --git a/SL/Controller/Helper/ParseFilter.pm b/SL/Controller/Helper/ParseFilter.pm index e1b621f16..8b68ee56e 100644 --- a/SL/Controller/Helper/ParseFilter.pm +++ b/SL/Controller/Helper/ParseFilter.pm @@ -297,11 +297,10 @@ customer. L allows you to search for these by filtering them p query => [ 'customer.name' => 'John Doe', - 'department.description' => [ like => '%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 parser will convert them into nested structures like this: