Combining recordsets

Sometimes, you will find that you have obtained recordsets which are not exactly what you need. This recipe shows various ways of combining them.

Getting ready

To use this recipe, you need to have two or more recordsets for the same model.

How to do it…

Here is the way to achieve common operations on recordsets:

  1. To merge two recordsets into one while preserving their order, use the following operation:
    result = recordset1 + recordset2
  2. To merge two recordsets into one ensuring that there are no duplicates in the result, use the following operation:
    result = recordset1 | recordset2
  3. To find the records that are common to two recordsets, use the following operation:
    result = recordset1 & recordset2

How it works…

The class for recordsets implements ...

Get Odoo Development Cookbook now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.