Ask About Your Odoo Data
Enter a question below or select a sample question to analyze your business data.
Sample Questions
Who are our top customers?
Show me product prices
What are our recent sales orders?
Show sales trends over time
Show customer information
What is our inventory status?
Analyzing your question...
Results for: "Show me product prices"
Answer
Here are the prices for all products in our inventory. The product with the highest price is "Gaming Laptop XPS" at $1,899.99, while the lowest priced item is "USB Cable" at $9.99.
Visualization
Visualization type: Bar Chart
Query Details
SQL Query
SELECT p.name as product_name, p.list_price as price FROM product_template p WHERE p.active = true ORDER BY p.list_price DESC
Visualization Reason
A bar chart is ideal for comparing prices across different products, making it easy to visualize the price range and identify outliers.