Hello all,
In the new API, the search() method returns a recordset. For example, this code :
ids = self.search([('default_code', operator, name)])
COuld return something like this :
ids = product.product(1366, 1365, 1325, 1303, 1297, 1296, 1295, 1291)
How could I obtains a list of IDs like this instead????
ids = [1366, 1365, 1325, 1303, 1297, 1296, 1295, 1291]
Thanks