Skip to Content
Menu
This question has been flagged

Hello,

One of my context keys contains multiple ids that I am going to use in a python method. What I am trying to do is get each of those ids from the context key, into an array so I can use it in my method. So far this is what I am doing:

ids = context.get('list_of_ids')

Now the value that is being returned to ids is this: [[6, False, [3, 13481]]]

I dont know why the 6, and the False are there, but the 3, and the 13481 are the ids I want to get into the ids variable. Does anyone know how I can get just the 3, and the 13481 ids?

Avatar
Zrušiť

ids = context.get('list_of_ids')[0][2]

6 it's because you are pulling a one2many or many2many. I'm not sure.. So this has some additional codes.

Autor

Thank you Grover. Your answer is greatly appreciated

Related Posts Replies Zobrazenia Aktivita
1
jan 25
1867
0
júl 22
2954
3
sep 20
3574
2
dec 15
5272
0
mar 15
3881