Exposing Related fields stored in other models
When reading data from the server, Odoo clients can only get values for the fields available in the model being queried. Client-side code can't use dot notation to access data in the related tables like server-side code can.
But those fields can be made available there by adding them as related fields. We will do this to make the publisher's city available in the Library Book model.
Getting ready
We will reuse the my_module
addon module from Chapter 3, Create Odoo Modules.
How to do it…
Edit the models/library_book.py
file to add the new "related" field:
Make sure that we have a field for the book Publisher:
class LibraryBook(models.Model): # ... publisher_id = fields.Many2one( 'res.partner', string='Publisher')
Now, add the related field for the Publisher's city:
# class LibraryBook(models.Model): # ... publisher_city = fields.Char( 'Publisher City', related='publisher_id.city')
Finally, we need to upgrade the...