Hi,
I would like to filter sales orders to get only orders where ALL picking_ids.state = 'done'.
If I use the filter [('picking_ids.state', '=', 'done')] I get all orders where at least one picking_ids.state = done.
What can I do to get orders where ALL picking_ids.state = done?