Sum record in treeview odoo 17
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Kế toán
- Tồn kho
- PoS
- Project
- MRP
Câu hỏi này đã bị gắn cờ
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:2
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.
Bạn có hứng thú với cuộc thảo luận không? Đừng chỉ đọc, hãy tham gia nhé!
Tạo tài khoản ngay hôm nay để tận hưởng các tính năng độc đáo và tham gia cộng đồng tuyệt vời của chúng tôi!
Đăng kýBài viết liên quan | Trả lời | Lượt xem | Hoạt động | |
---|---|---|---|---|
|
0
thg 4 23
|
2975 | ||
Remove sum when GroupBy (online)
Đã xử lý
|
|
2
thg 3 23
|
2704 | |
|
1
thg 3 15
|
4869 | ||
|
2
thg 3 15
|
8521 | ||
|
0
thg 4 21
|
3828 |