Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
1 Rispondi
1674 Visualizzazioni

In any python method How can I know the current view id 
when I use an inherited form 
or just the original form 

can any one help me in this ?

Avatar
Abbandona
Risposta migliore

Hi Ahmed,

Try this code :


def your_method_name(self): 

​view_id = self.env.context.get('view_id') 

​if view_id:

​original_view = self.env['ir.ui.view'].browse(view_id)

Avatar
Abbandona
Autore

unfortunately, not working every time the view_id came with None value.

Autore

any thing can I add it in the view xml to get value for the view_id ??

Hi Ahmed,

Can you try this one.

@api.model
def custom_method(self):
params = self.env.context.get('params', {})
view_id = params.get('view_id')
if view_id:
view = self.env['ir.ui.view'].browse(view_id)

Post correlati Risposte Visualizzazioni Attività
2
dic 24
2777
0
set 24
755
0
mag 24
1661
1
ago 25
525
1
mag 25
1331