November 2016
Beginner to intermediate
298 pages
6h 10m
English
We will now explore how the ORM works and learn about the most common operations performed with it. We will use the prompt provided by the shell command to interactively explore how recordsets work.
With self, we can only access the method's recordset. But the self.env environment reference allows us to access any other model. For example, self.env['res.partner'] returns a reference to the Partners model (which is actually an empty recordset). We can then use search() or browse() on it to generate recordsets.
The search() method takes a domain expression and returns a recordset with the records matching those conditions. An empty domain [] will return all records. For more details on domain expressions please ...
Read now
Unlock full access