I have Many2one field linked to 'res.partner'
I also have related field to this many2one field and catch the image from this customer record to display it on the form
at first it appear but when I click save or reopen this record image don't appear and this message don't display
any help
name_id = fields.Many2one('res.partner', required=True, string='Customer Name', ondelete='restrict',store=True)image_id = fields.Image(related='name_id.image_1920')