Skip to Content
Odoo Menu
  • Prihlásiť sa
  • Vyskúšajte zadarmo
  • Aplikácie
    Financie
    • Účtovníctvo
    • Fakturácia
    • Výdavky
    • Tabuľka (BI)
    • Dokumenty
    • Podpis
    Predaj
    • CRM
    • Predaj
    • POS Shop
    • POS Restaurant
    • Manažment odberu
    • Požičovňa
    Webstránky
    • Tvorca webstránok
    • eShop
    • Blog
    • Fórum
    • Živý chat
    • eLearning
    Supply Chain
    • Sklad
    • Výroba
    • Správa životného cyklu produktu
    • Nákup
    • Údržba
    • Manažment kvality
    Ľudské zdroje
    • Zamestnanci
    • Nábor zamestnancov
    • Voľné dni
    • Hodnotenia
    • Odporúčania
    • Vozový park
    Marketing
    • Marketing sociálnych sietí
    • Email marketing
    • SMS marketing
    • Eventy
    • Marketingová automatizácia
    • Prieskumy
    Služby
    • Projektové riadenie
    • Pracovné výkazy
    • Práca v teréne
    • Helpdesk
    • Plánovanie
    • Schôdzky
    Produktivita
    • Tímová komunikácia
    • Schvalovania
    • IoT
    • VoIP
    • Znalosti
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industries
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Restaurant
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Real Estate
    • Real Estate Agency
    • Architecture Firm
    • Construction
    • Estate Managament
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware and Support
    • Solar Energy Systems
    • Shoe Maker
    • Cleaning Services
    • HVAC Services
    Others
    • Nonprofit Organization
    • Environmental Agency
    • Billboard Rental
    • Photography
    • Bike Leasing
    • Software Reseller
    Browse all Industries
  • Komunita
    Vzdelávanie
    • Tutoriály
    • Dokumentácia
    • Certifikácie
    • Školenie
    • Blog
    • Podcast
    Empower Education
    • Vzdelávací program
    • Scale Up! Business Game
    • Visit Odoo
    Softvér
    • Stiahnuť
    • Porovnanie Community a Enterprise vierzie
    • Releases
    Spolupráca
    • Github
    • Fórum
    • Eventy
    • Preklady
    • Staň sa partnerom
    • Services for Partners
    • Register your Accounting Firm
    Služby
    • Nájdite partnera
    • Nájdite účtovníka
    • Meet an advisor
    • Implementation Services
    • Zákaznícke referencie
    • Podpora
    • Upgrades
    ​Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Získajte demo
  • Cenník
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Účtovníctvo
  • Sklady
  • PoS
  • Projektové riadenie
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tagy (View all)
odoo accounting v14 pos v15
About this forum
Pomoc

Get the value of one2many field in excel report

Odoberať

Get notified when there's activity on this post

This question has been flagged
one2manyreportinginvoicingOdoo13.0
2 Replies
5506 Zobrazenia
Avatar
Suhaib Ahmed Khateeb

I have created a custom report for invoice summary, i can easily fetch the header part of the invoice line invoice date, partner name etc.. But when it comes to invoice lines I am unable to fetch the data.

Please check this code out

for invoice in invoice_objs:
invoice_date = invoice.invoice_date.strftime('%Y-%m-%d') /correct
worksheet.write(row, 0, invoice_date) /correct
worksheet.write(row, 1, invoice.name) /correct
worksheet.write(row, 2, invoice.partner_id.name)
for product_id in account.move.line:
worksheet.write(row, 3, invoice_line_ids.product_id.name)


I am getting error in the last 3 lines of the code

can anyone suggest how to fetch data from a one2many field in odoo13

0
Avatar
Zrušiť
Avatar
Ibrahim Boudmir
Best Answer

Hi Suhaib, 

For your question, did you try: 

worksheet.write(row, 3,  ', '.join(invoice.invoice_line_ids.mapped('product_id.name'))

of course, you don't need iteration on products when you use this code.

P.S: 
I think you code is incorrect: Because your second iteration will erase the first inserted data. ( you're always pointing at row, unless, hopefully, you tell me row is incremted and not shown here ^^ ) 



------------- UPDATE ---------------
Since you want to put each product in each line in case you have multiple products in sale order, please consider the following: 

In Odoo, you can export a sale order with Order lines/product Column and you can check the result in generated Xls. You will notice that in this case, odoo creates a new empty line and only adds name of article => This is how we import O2M fields in odoo. 

if len(invoice.invoice_line_ids) > 1:
    worksheet.write(row,3, invoice.invoice_line_ids[0].product_id.name)
for product_id in invoice.invoice_line_ids[1:]:
    row +=1
    worksheet.write(row, 3, product_id.name)

------------- END of UPDATE ---------------
Hope this helps. 
You can write me back if not for further analysis.

Regads.

0
Avatar
Zrušiť
Suhaib Ahmed Khateeb
Autor

Yes Ibrahim row is incremented I used row+=1

Suhaib Ahmed Khateeb
Autor

Thanks Ibrahim it worked but partially, the products showing are in same line like you can see the second line under invoice description "betrillix,sample" those are two different products but showing in same line, how can I do them in two different lines?

Invoice Date Invoice Number Customer Invoice Description
2022-01-17 INV/2022/0001 Administrator Betrillix
2022-01-05 INV/2022/0003 My Company Betrillix, Sample
2022-01-03 INV/2022/0002 Administrator Betrillix

Ibrahim Boudmir

Well, i thought you wanted to add them in one cell.
So, what you need actually is the standard export of a O2M field based on product name only.
I ll update my answer.

Suhaib Ahmed Khateeb
Autor

Thanks Ibrahim but its coming like this
Invoice Date Invoice Number Customer Invoice Description
2022-01-17 INV/2022/0001 Administrator
2022-01-05 INV/2022/0003 My Company Betrillix
Sample
2022-01-03 INV/2022/0004 My Company
2022-01-03 INV/2022/0002 Administrator

Only the line with multiple products are visible not the single ones

Ibrahim Boudmir

i can't imagine the result of code. I need to see python code and excel file. if you send me these at my email, i probably can help better:
ibrahim.boudmir@gmail.com

Suhaib Ahmed Khateeb
Autor

Have mailed you
Thanks

Ibrahim Boudmir

if Ok for you, you can check my answer as the right answer.
Thanks

Suhaib Ahmed Khateeb
Done

On Mon, 24 Jan 2022, 10:30 pm Ibrahim Boudmir, <ibrahim.boudmir@gmail.com> wrote:

if Ok for you, you can check my answer as the right answer.
Thanks

Envoyé par Odoo S.A. utilisant Odoo.

Avatar
Rahiya Basheer
Best Answer

i have the same issues

def generate_xlsx_report(self, workbook, data, partners):
bold = workbook.add_format({'bold': True, 'align': 'center'})
format_1 = workbook.add_format({'bold': True, 'align': 'center', 'bg_color': 'cyan'})

for obj in partners:
sheet = workbook.add_worksheet(obj.customer_id.name)
row = 3
col = 3
sheet.set_column('D:D', 12)
sheet.set_column('E:E', 22)
row += 1
sheet.merge_range(row, col, row, col+1, 'Product Details', format_1)
row += 1
sheet.write(row, col, 'Customer', bold)
sheet.write(row, col+1, obj.customer_id.name)
row += 1
sheet.write(row, col, 'Vendor', bold)
sheet.write(row, col + 1, obj.vendor_id.name)
row += 1
sheet.write(row, col, 'Product', bold)
sheet.write(row, col+1, ', '.join(obj.products_ids.mapped('name.name')))
row += 1

i used the second last line to print the products. but actually that is not what i am expected. i need to print it like a table.


0
Avatar
Zrušiť
Enjoying the discussion? Don't just read, join in!

Create an account today to enjoy exclusive features and engage with our awesome community!

Registrácia
Related Posts Replies Zobrazenia Aktivita
Compute field in excel report Solved
reporting invoicing Odoo13.0
Avatar
Avatar
Avatar
2
jan 22
3009
Addition of two fields in excel report
reporting invoicing Odoo13.0
Avatar
0
jan 22
18
If Condition in excel report Solved
reporting invoicing Odoo13.0
Avatar
Avatar
1
jan 22
3200
Payment Method in Invoice Summary Report
pdf reporting invoicing Odoo13.0
Avatar
0
feb 22
3242
Expected Singleton Error for excel report
reporting invoicing excel Odoo13.0
Avatar
1
feb 22
61
Komunita
  • Tutoriály
  • Dokumentácia
  • Fórum
Open Source
  • Stiahnuť
  • Github
  • Runbot
  • Preklady
Služby
  • Odoo.sh hosting
  • Podpora
  • Vyššia verzia
  • Custom Developments
  • Vzdelávanie
  • Nájdite účtovníka
  • Nájdite partnera
  • Staň sa partnerom
O nás
  • Naša spoločnosť
  • Majetok značky
  • Kontaktujte nás
  • Pracovné ponuky
  • Eventy
  • Podcast
  • Blog
  • Zákazníci
  • Právne dokumenty • Súkromie
  • Bezpečnosť
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo je sada podnikových aplikácií s otvoreným zdrojovým kódom, ktoré pokrývajú všetky potreby vašej spoločnosti: CRM, e-shop, účtovníctvo, skladové hospodárstvo, miesto predaja, projektový manažment atď.

Odoo prináša vysokú pridanú hodnotu v jednoduchom použití a súčasne plne integrovanými biznis aplikáciami.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now