コンテンツへスキップ
メニュー
この質問にフラグが付けられました
2 返信
3076 ビュー

Sum record in treeview odoo 17

アバター
破棄
著作者 最善の回答

Thanks for your help.         

 But I want:        

Example: when I search it show 3 record, and I want to count this record.     (field count_record = 3)

アバター
破棄
最善の回答

Hello BB

It is already showing in odoo17 


Solution : 2

If you want to store in a field , You can also do like this


class SaleOrder(models.Model):
​_inherit = 'sale.order'

​no_of_records = fields.Integer(string='No. Of records', compute='count_no_of_records')

​def count_no_of_records(self):

​Solution : 1


​# records_lst = []
​# for record in self.search([], limit=10):
​# records_lst.append(record)
​# self.no_of_records = len(records_lst)

solution:

​​len_records = self.search_count([])
​self.no_of_records = len_records


アバター
破棄
著作者

Thanks for your help.
But I want to create a pivot to count record in tree view.

関連投稿 返信 ビュー 活動
0
4月 23
2978
2
3月 23
2709
1
3月 15
4869
2
3月 15
8526
0
4月 21
3829