list_sale_orders
Retrieve sales orders and quotations from Odoo with filters for state, customer, date range, and pagination to track sales data.
Instructions
List sale orders (quotations/orders).
Args:
state: State (draft=Quotation, sent=Sent, sale=Sales Order, done=Locked, cancel=Cancelled)
partner_id: Filter by customer
date_from: Start date (YYYY-MM-DD)
date_to: End date (YYYY-MM-DD)
limit: Maximum number (default: 50)
offset: Offset for pagination (default: 0)
Returns:
List of orders
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| state | No | ||
| partner_id | No | ||
| date_from | No | ||
| date_to | No | ||
| limit | No | ||
| offset | No |