NAME
OpenERP::OOM::Tutorial::Searching
VERSION
version 0.44
DESCRIPTION
NAME
OpenERP::OOM::Tutorial::Searching
Complex Search Terms
OpenERP allows logic operators like most database wrappers, just a little stranger. It uses postfix style operators to allow you to or things together. You can also use '&' as an operator.
my $products = $schema->class('Product');
$products->search('|', '|',
[ 'default_code', 'ilike', '%' . $query . '%' ],
[ 'description', 'ilike', '%' . $query . '%' ],
[ 'name', 'ilike', '%' . $query . '%' ]);
For more details see the OpenERP Developer book.
AUTHOR
Jon Allen (JJ), <jj@opusvl.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2011-2016 by OpusVL.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.