Overslaan naar inhoud
Menu
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Deze vraag is gerapporteerd

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
Annuleer

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.

Auteur

Thank you Grover. Your answer is greatly appreciated

Gerelateerde posts Antwoorden Weergaven Activiteit
1
jan. 25
1867
0
jul. 22
2954
3
sep. 20
3574
2
dec. 15
5272
0
mrt. 15
3881