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

I need to count record with certain context.My code goes like this

@api.one
def sale_count(self):
count = self.env['sale.order'].search_count([('state', '=', 'sale')])
self.sale_order = count

And I need context as
'search_default_team_id': [active_id],
'default_team_id': active_id,


الصورة الرمزية
إهمال
أفضل إجابة
@api.one
def sale_count(self):
count_list = self.env['sale.order'].search([('state', '=', 'sale')])
    count = len(count_list)
self.sale_order = count

Please try this code, its may help you. Thanks.

الصورة الرمزية
إهمال
الكاتب

Thanks for your reply nikhil, I did used this code, and gave me an error TypeError: object of type 'long' has no len().

Then you give the details of your code,

'self.sale_order' - what is the type of this field?,

المنشورات ذات الصلة الردود أدوات العرض النشاط
2
يوليو 25
4501
2
ديسمبر 24
7674
2
نوفمبر 24
28439
2
مايو 24
7414
3
مارس 24
6824