Revision 1ce5cf96
Von Bernd Bleßmann vor etwa 4 Jahren hinzugefügt
SL/Controller/Helper/ParseFilter.pm | ||
---|---|---|
|
||
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
|
Auch abrufbar als: Unified diff
POD fix: Rose Syntax im Beispiel
Vergleichsoperatoren werden als Hash-Ref angegeben.