Přejít na obsah
Menu
You need to be registered to interact with the community.
This question has been flagged
1 Odpovědět
8472 Zobrazení

Odoo 10

Hi,

In form view of model 'AM' I have O2M field to model 'BM'. In this tree view I have button with connected method 'connected_method' which changes values of field 'state' in form view of model 'AM'. The problem is that I don't see change on frontend, but there is change in database! When I refreshes (F5) page then the changes outcome. Now I am returning action with tag 'reload', but it is soo slow. Is there any better solution which not reloads whole page, but only necessary fields?

connected method:

def connected_method(self):
     self.field_model_am.state = 'done'
     return {
         'type': 'ir.actions.client',
         'tag': 'reload'
     }

    

Avatar
Zrušit
Nejlepší odpověď

hello ,

You can use soft_reload instead of reload, it essentially refreshes the current page without a complete page reload.

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


Avatar
Zrušit
Related Posts Odpovědi Zobrazení Aktivita
0
dub 20
3204
7
led 24
152870
2
říj 16
7146
2
zář 23
6668
5
pro 23
27162