How to reload browser from code in Odoo 10

639 views Asked by At

I created a button(Edit) in sale order line and when i am using this button then values returns in sale order form. Process is going well, but problem is that changes reflected after browser reload( Either F5 or UI). And i want this browser reload by coding. So, What kind of syntax or method?

Thanks in advance

1

There are 1 answers

0
Kenly On BEST ANSWER

You can use reload tag:

return {
    'type': 'ir.actions.client',
    'tag': 'reload',
}