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

i want to create 'select query' in cr.execte with string parameter and how to pass the parameter to return statement in python for openerp

頭像
捨棄
最佳答案

Hi,,

cr.execute('select id from table_name where your_field=%s ', (patamerter1,))

Thanks

頭像
捨棄
最佳答案

or in using self.env.cr.execute, you can do 


self.env.cr.execute("DELETE from account_invoice_summary where invoice_id = %d" % (self.id))
頭像
捨棄