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
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Contabilidad
- Inventario
- PoS
- Project
- MRP
Se marcó esta pregunta
2
Respuestas
17997
Vistas
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))
¿Le interesa esta conversación? ¡Participe en ella!
Cree una cuenta para poder utilizar funciones exclusivas e interactuar con la comunidad.
Registrarse