Passa al contenuto
Menu
È necessario essere registrati per interagire con la community.
La domanda è stata contrassegnata
2 Risposte
21281 Visualizzazioni

I used self.env.context.get('secondary_qty') to fetched the pieces but why it returns None?


What are the possible reasons that it will return None ?

Avatar
Abbandona

Hello, did you solve this problem? Cause right now, Im facing similar problem

Risposta migliore

Hi,

Self.env.context.get() method is used in order to check whether that key is present in our context. So make sure that your context have this field and its value. Just try to print the context and check the field and its values is there.
context = self.env.context
if context.get('secondary_qty'):       

 print("YES")        

 other operations

Avatar
Abbandona
Autore

Yes,thank u, the field I'm trying to fetch doesn't have any value

Risposta migliore

Hi,
Since secodary qty is note default context, please check if you pass the context before calling the method. To pass the context you can use with_context() method
ex:
self.with_context(secondary_qty='value').write()

I think you can also print out self.env.context to check what context you have.

Avatar
Abbandona
Post correlati Risposte Visualizzazioni Attività
2
gen 18
8672
2
set 24
44
2
ago 24
1468
2
feb 23
12647
0
feb 23
2829