تخطي للذهاب إلى المحتوى
القائمة
لقد تم الإبلاغ عن هذا السؤال
2 الردود
8913 أدوات العرض

hello 

what is the use of browse method in odoo 15 ?



thank you in advance


الصورة الرمزية
إهمال

Browse method is used to get record set from database id or list of ids. In orders now you have record set of order [2,5,7] and you need to execute for loop to print data.

أفضل إجابة

Hi,

When you have an id or list of ids of an object and you have to get its record sets, you can use the browse orm method.

Suppose if you have list of id's of res.partner, lets says, partner_ids = [1,2,3] and if you need to get records, you can use browse method as follow:

partner_ids = [1,2,3]
partners = self.env['res.partner'].browse(partner_ids)

Result: res.partner(1,2,3)


See this video illustrating the same:https://www.youtube.com/watch?v=qgcGpdGCxeA

Thanks & Regards

الصورة الرمزية
إهمال
أفضل إجابة

You can use browse to get a list of records of the current module or if you specify the module then you can get records of the specified module

eg

self.browse(ids) // current table

self.env['res.company'].browse(company_id) // res_company table
الصورة الرمزية
إهمال
المنشورات ذات الصلة الردود أدوات العرض النشاط
2
يونيو 22
2576
2
أكتوبر 25
2615
1
سبتمبر 25
2624
3
يوليو 25
4051
1
مايو 25
2156