Siirry sisältöön
Menu
Sinun on rekisteröidyttävä, jotta voit olla vuorovaikutuksessa yhteisön kanssa.
Tämä kysymys on merkitty
1 Vastaa
2720 Näkymät

Let's say I have this dictionary returned to me by an api:

{'idnumber': 123, 'balance': 456, 'fee': 789}


I already made a custom read-only field on res.orders and would like to display 'balance' on it. Is there a "correct" way of loading 'balance'? I'm fairly new to python and odoo so all viable ways are welcomed!

Avatar
Hylkää
Paras vastaus

hello,

i'm not sure if this is you want

you can use dic['balance']

eg :

dict_eg = {'idnumber': 123, 'balance': 456, 'fee': 789}

print dict_eg['balance']      // this will give 456

Avatar
Hylkää
Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
1
kesäk. 18
4196
1
tammik. 20
5310
1
tammik. 25
10010
3
syysk. 22
30910
1
marrask. 18
5640