Zum Inhalt springen
Menü
Sie müssen registriert sein, um mit der Community zu interagieren.
Diese Frage wurde gekennzeichnet

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
Verwerfen

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

Verknüpfte Beiträge Antworten Ansichten Aktivität
1
Jan. 25
1867
0
Juli 22
2954
3
Sept. 20
3574
2
Dez. 15
5272
0
März 15
3881