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

'm trying to display a list of products group by category on a Qweb Report in Odoo17. I created my list in a python class. After the process, this python list looks like this :

{
    'Office Furniture': 
    [
        {'name': 'Chair floor protection\nOffice chairs can harm your floor: protect it.', 'cat': 'Office Furniture'}, 
        {'name': 'Chair floor protection\nOffice chairs can harm your floor: protect it.', 'cat': 'Office Furniture'}
    ], 
    'Services': 
    [
        {'name': 'Deposit', 'cat': 'Services'}
    ]
}

On the Qweb side I loop through this list to display the name of products after the category. I return the category but can't figure out how display the products related to each category :


Could you please help ?

Thanks a lot

頭像
捨棄
最佳答案

Hi,
 def get_grouped_products(self):
        products = self.env['product.product'].search([])  # Fetch all products
        grouped_products = {}
        for product in products:
            category = product.categ_id.name  # Access category name
            if category not in grouped_products:
                grouped_products[category] = []
            grouped_products[category].append(product)
        return grouped_products

Hope it helps

頭像
捨棄
作者 最佳答案

Thank so much !

頭像
捨棄
相關帖文 回覆 瀏覽次數 活動
1
4月 25
1556
1
2月 25
584
0
4月 25
681
0
10月 24
568
7
9月 24
23938