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

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
7月 25
4510
2
12月 24
7680
2
11月 24
28442
2
5月 24
7418
3
3月 24
6831