Skip to Content
Menu
This question has been flagged
2 Replies
7900 Views

in odoo 15,
 request.env['product.product'].sudo().search_read([('id','=', search_id)]), used to give all the fields. 
seems like its not the same for 17. 
How can i read all the fields in odoo17 orm. 
What do i use ? search, search_read? Most importantly, how to do i get all the data?

Avatar
Discard
Best Answer

Hi,

You can try this code , request.env['product.product'].search_read([], ['id'])


Regards

Avatar
Discard
Best Answer

Hi junaid 

you can get 

 request.env['product.product'].search_read([])

or you can find specific field using like 

request.env['product.product'].search_read([],['name','id'])


Thanks

Avatar
Discard
Related Posts Replies Views Activity
2
Feb 24
3124
0
Jan 23
1230
4
Apr 19
12459
1
Jan 25
518
1
Sep 24
2354