Skip to Content
เมนู
คุณต้องลงทะเบียนเพื่อโต้ตอบกับคอมมูนิตี้
คำถามนี้ถูกตั้งค่าสถานะ
1 ตอบกลับ
3261 มุมมอง

I have a list here and I trying to mapped the brand field. May I know how can I mapped this appended list?
Ex.[Chanel, Vuitton, Vuitton, Celine]
 I wanted Vuitton returned 1 data only



 ai_list = []
        for ai in ai_record:
            for ail in ai.invoice_line_ids:
                ai_list.append({  'partner_id': partner_id.name,
                                  'transaction_date': ai.date_invoice, 
                                  'invoice_number': ai.number, 
                                  'brand': ai.brand, // how to use mapped() here
                                  'net_value': ai.residual, })
        return ai_list    


อวตาร
ละทิ้ง

#python #for #odoo #customization

https://old.reddit.com/r/PythonForOdoo/

คำตอบที่ดีที่สุด

Hi,

Try this,
ai_list = []
for ai in ai_record:
    brand = list(set(ai.brand))
    for ail in ai.invoice_line_ids:
        ai_list.append({ 'partner_id': partner_id.name,
                'transaction_date': ai.date_invoice,
                'invoice_number': ai.number,
                'brand': brand,
                'net_value': ai.residual, })
return ai_list

Check this link too https://www.w3schools.com/python/python_sets.asp 

Hope it helps,

Thanks

อวตาร
ละทิ้ง
Related Posts ตอบกลับ มุมมอง กิจกรรม
0
ธ.ค. 24
1007
2
มิ.ย. 23
2530
1
ม.ค. 23
2680
1
ต.ค. 20
4311
4
ก.ค. 17
7259