Bỏ qua để đến Nội dung
Menu
Câu hỏi này đã bị gắn cờ
1 Trả lời
1680 Lượt xem

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 ?

Ảnh đại diện
Huỷ bỏ
Câu trả lời hay nhất

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)

Ảnh đại diện
Huỷ bỏ
Tác giả

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

Tác giả

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)

Bài viết liên quan Trả lời Lượt xem Hoạt động
2
thg 12 24
2779
0
thg 9 24
755
0
thg 5 24
1662
1
thg 8 25
526
1
thg 5 25
1334