Skip to Content
Menu
This question has been flagged
1 Reply
3588 Views

How to display the client's phone or mobile fields in the sale.order view ?
​i'm using odoo 11.
Thanks in advance.
Avatar
Discard
Best Answer

Take related field on sale.order and add/display it on view.

mobile = fields.Char(related='partner_id.mobile')​
phone = fields.Char(related='partner_id.phone')​

Avatar
Discard