Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
Odoo

Search Records in Odoo

Find records with search(), search_count(), and search_read().

Search Records in Odoo — a practical guide to Odoo search records with clear examples you can reuse in real projects.

Odoo Tutorial Series (31/112). Prefer one article? Read the complete Odoo tutorial.

Short description

Use domains, limit/offset/order for efficient queries.

search

books = self.env['library.book'].search([
    ('active', '=', True),
], limit=20, order='name')

Leave a reply

Your email address will not be published. Required fields are marked *