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

I'm currently developing a function that can delete an order line with a click on a button and a SQL query.

My query has a syntax error but I'm inspiring myself with odoo's addons.


The error is this:

psycopg2.ProgrammingError: syntax error at or near "%"
LINE 2:                        WHERE (product_id = %(product_id)s)AN...

And my query is this:

DELETE FROM sale_order_line WHERE (product_id = %(product_id)s)AND (order_id = %(order_id)s)

 
Avatar
Hylkää
Paras vastaus

Hello

try will below code:

self._cr.execute("DELETE FROM sale_order_line WHERE product_id=%s AND order_id=%s", (product_idorder_id))

in above query you have pass the interger value of variable product_id and order_id

Avatar
Hylkää
Tekijä

Oh okay I see the mistake

Thanks for the help

Aiheeseen liittyviä artikkeleita Vastaukset Näkymät Toimenpide
0
marrask. 21
3238
1
syysk. 21
2959
1
marrask. 19
4935
0
tammik. 22
3991
0
lokak. 21
1691