跳至內容
選單
此問題已被標幟
1 回覆
14017 瀏覽次數

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.

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
0
6月 18
5608
0
3月 15
4312
3
7月 25
2836
1
10月 24
2060
1
4月 24
2092