Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1 Відповісти
15321 Переглядів

I'm wondering how to use cr.execute and fetch...? I'm getting only values. Is there a way to get values in a dict?

self.env.cr.execute("SELECT SUM(p.value) AS value, SUM(p.payed) AS payed.....")  # few inner joins and where conditions
result = self.env.cr.fetchall()  

In the result I get (4.66, 2.0), but is there a way to get {'value': 4.66, 'payed': 2.0}?
On only 2 returned values it isn't such a problem but for 5 or more it becomes inconvenient.
(sorry I don't know how to get out of code mode)
Аватар
Відмінити
Найкраща відповідь

You can use self._cr.dictfetchall()

You can check some more information about python fetch type.

Аватар
Відмінити
Автор

Thanks... first time using manual SQL in odoo.

thanks a lot! however, that link gives me 404 page not found, i guess that doesn't work anymore. so instead, here is another link >>> https://www.odoo.com/id_ID/forum/help-1/please-define-these-python-fetch-types-8562

Related Posts Відповіді Переглядів Дія
1
груд. 19
8409
1
трав. 20
6099
2
лип. 25
4861
2
груд. 24
7924
2
лист. 24
28737