Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
2 Răspunsuri
3077 Vizualizări

Sum record in treeview odoo 17

Imagine profil
Abandonează
Autor Cel mai bun răspuns

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)

Imagine profil
Abandonează
Cel mai bun răspuns

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


Imagine profil
Abandonează
Autor

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

Related Posts Răspunsuri Vizualizări Activitate
0
apr. 23
2979
2
mar. 23
2711
1
mar. 15
4870
2
mar. 15
8527
0
apr. 21
3832