Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage Distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Property Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
      • Get a Tailored Demo
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +32 2 290 34 90
    • Get a Tailored Demo
  • Pricing
  • Help
  1. APPS
  2. Apps
  3. Advanced Search v 15.0
  4. Sales Conditions FAQ

Advanced Search

by Hypsai Tech https://github.com/hypsai/odoo_addons/tree/main/oql_web
Odoo
v 15.0 Third Party 4
Download for v 15.0 Deploy on Odoo.sh
Apps purchases are linked to your Odoo account, please sign in or sign up first.
Availability
Odoo Online
Odoo.sh
On Premise
Community Apps Dependencies Show
OQL - Odoo Query Language
Lines of code 11509
Technical Name oql_web
LicenseLGPL-3
Websitehttps://github.com/hypsai/odoo_addons/tree/main/oql_web
You bought this module and need support? Click here!
Availability
Odoo Online
Odoo.sh
On Premise
Community Apps Dependencies Show
OQL - Odoo Query Language
Lines of code 11509
Technical Name oql_web
LicenseLGPL-3
Websitehttps://github.com/hypsai/odoo_addons/tree/main/oql_web

Advanced Search

Type-to-search: replace Odoo's click-based search with a powerful text query bar featuring syntax highlighting, autocomplete, and intelligent search capabilities.

Syntax Highlighting. Autocomplete. Smart Search.

Advanced Search, Power Search, Smart Query, SQL Query

OQL Query Demo

From Complex to Simple

Traditional Domain (30+ lines)
# 4 preparatory searches
boot_catg = env['product.category'].search(...)
danner_brand = env['product.category'].search(...)
size_values = env['product.attribute.value'].search(...)
waterproof_tags = env['product.template.tag'].search(...)

# Complex domain
domain = [
    ('categ_id', 'child_of', danner_brand.ids),
    ('product_template_attribute_value_ids...', 'in', size_values.ids),
    ('tag_ids', 'in', waterproof_tags.ids)
]
products = env['product.product'].search(domain)
OQL (1 line)
products = env['product.product'].searcho(
    "CatgS = 'Boot' and Brand = 'Danner' and EuShoeSize in ('40', '40.5') and Waterproof"
)

Business terms    No prep searches    Readable by anyone

OQL Query Workbench

For advanced query development, access the full-screen IDE from the top navigation bar:

Workbench Entry Button

Click the OQL button in navigation bar

OQL Workbench Interface

Full-screen IDE with multi-tab support

Multi-Tab Interface

Manage multiple queries

Model Browser

Quick query creation

Auto-Save

Never lose your work

Cloud Sync

Cross-device backup

Get Started in 3 Steps

1

Install Module

Install the required dependencies for Advanced Search:

  • Required: Install OQL Module
    Advanced Search depends on the oql module. Install it first:
    https://apps.odoo.com/apps/modules/15.0/oql
  • Download Advanced Search from Odoo App Store
    You'll receive a file named oql_web-x.x.x.zip
  • Extract and Place in Addons Directory
    Extract the zip file and copy the oql_web folder to your Odoo addons path
  • Install via Odoo Interface
    Enable Developer Mode by adding ?debug=1 to your URL
    Then go to: Apps → Click Update Apps List (top menu) → Search "Advanced Search" → Click Install
2

Use OQL Search

Switch to OQL mode and start searching with business language:

  • Click the OQL Toggle Button
    Look for the OQL button on the left side of the native search bar. Click it to switch to OQL mode.
  • Type Your OQL Query
    The native search box will be replaced with an OQL editor featuring syntax highlighting and intelligent autocomplete (with oql_pro).
  • Press Enter to Search
    Simply press Enter to execute your query. Results will appear just like native Odoo search.

Pro Tips:
Your search history is automatically saved    Toggle back to native search anytime    State persists across page refreshes

You're All Set!

Start writing business-focused queries and simplify your Odoo data searches today!

Optional: Enhanced Autocomplete

Want the intelligent autocomplete feature shown in the preview GIF above? Install the oql_pro module for advanced code completion and smart suggestions.

Get oql_pro:

https://apps.odoo.com/apps/modules/15.0/oql_pro

Ready to Enhance Your OQL Experience?

Install Advanced Search and start writing queries with syntax highlighting and intelligent search!

View Advanced Search on GitHub

Please log in to comment on this module

  • The author can leave a single reply to each comment.
  • This section is meant to ask simple questions or leave a rating. Every report of a problem experienced while using the module should be addressed to the author directly (refer to the following point).
  • If you want to start a discussion with the author, please use the developer contact information. They can usually be found in the description.
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security

Odoo is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

Website made with