Перейти к содержимому
Меню
Чтобы взаимодействовать с сообществом, необходимо зарегистрироваться.
Этот вопрос был отмечен
1 Ответить
13888 Представления

Can you confirm that :

-it's not possible to do a search with XMLRPC on 2 tables, like a JOIN in SQL (without creating a new module) ?

-i want to look for the account.invoice.line that contains a certain product, with account.invoice of type "out". In SQL it's a simple join, but with the search method with XMLRPC I can't see how i can do that.

-furthermore, why in standard there isn't a special XMLRPC method that would process any SQL query (SELECT only) ? It would simplify the work.

Аватар
Отменить
Лучший ответ

Technically speaking you could just do a cr.execute() call to get exactly what you want. That's what cr is in nearly every python function, the database cursor. There's no XMLRPC command for joins though. Check the psycopg2 documentation for more info on how to use that properly. http://initd.org/psycopg/docs/usage.html

cr.execute("""SELECT account_invoice_line.id
    FROM account_invoice_line LEFT JOIN (
    SELECT id FROM account_invoice WHERE type='out_invoice'
    ) AS foo ON foo.id=order_line_id
    WHERE product_id=%s""", str(my_product_id))
results = cr.fetchall()
invoice_line_ids = []
for res_id in results:
    invoice_line_ids.append(res_id[0])

Note that the result will be a list of lists of a single integer, so that's why I included a for loop to convert it to a single list of IDs. Also, converting the integer to a string first is proper psycopg2 syntax.

Аватар
Отменить
Related Posts Ответы Просмотры Активность
0
июн. 18
5467
0
мар. 15
4163
1
окт. 24
1834
1
апр. 24
1902
2
мар. 24
2488