Skip to Content
Odoo Menu
  • Prijavi
  • Try it free
  • Aplikacije
    Finance
    • Knjigovodstvo
    • Obračun
    • Stroški
    • Spreadsheet (BI)
    • Dokumenti
    • Podpisovanje
    Prodaja
    • CRM
    • Prodaja
    • POS Shop
    • POS Restaurant
    • Naročnine
    • Najem
    Spletne strani
    • Website Builder
    • Spletna trgovina
    • Blog
    • Forum
    • Pogovor v živo
    • eUčenje
    Dobavna veriga
    • Zaloga
    • Proizvodnja
    • PLM
    • Nabava
    • Vzdrževanje
    • Kakovost
    Kadri
    • Kadri
    • Kadrovanje
    • Odsotnost
    • Ocenjevanja
    • Priporočila
    • Vozni park
    Marketing
    • Družbeno Trženje
    • Email Marketing
    • SMS Marketing
    • Dogodki
    • Avtomatizacija trženja
    • Ankete
    Storitve
    • Projekt
    • Časovnice
    • Storitve na terenu
    • Služba za pomoč
    • Načrtovanje
    • Termini
    Produktivnost
    • Razprave
    • Odobritve
    • IoT
    • Voip
    • Znanje
    • WhatsApp
    Third party apps Odoo Studio Odoo Cloud Platform
  • Industrije
    Trgovina na drobno
    • Book Store
    • Trgovina z oblačili
    • Trgovina s pohištvom
    • Grocery Store
    • Trgovina s strojno opremo računalnikov
    • Trgovina z igračami
    Food & Hospitality
    • Bar and Pub
    • Restavracija
    • Hitra hrana
    • Guest House
    • Beverage Distributor
    • Hotel
    Nepremičnine
    • Real Estate Agency
    • Arhitekturno podjetje
    • Gradbeništvo
    • Estate Management
    • Vrtnarjenje
    • Združenje lastnikov nepremičnin
    Svetovanje
    • Računovodsko podjetje
    • Odoo Partner
    • Marketinška agencija
    • Law firm
    • Pridobivanje talentov
    • Audit & Certification
    Proizvodnja
    • Tekstil
    • Metal
    • Pohištvo
    • Hrana
    • Brewery
    • Poslovna darila
    Health & Fitness
    • Športni klub
    • Trgovina z očali
    • Fitnes center
    • Wellness Practitioners
    • Lekarna
    • Frizerski salon
    Trades
    • Handyman
    • IT Hardware & Support
    • Sistemi sončne energije
    • Izdelovalec čevljev
    • Čistilne storitve
    • HVAC Services
    Ostali
    • Neprofitna organizacija
    • Agencija za okolje
    • Najem oglasnih panojev
    • Fotografija
    • Najem koles
    • Prodajalec programske opreme
    Browse all Industries
  • Skupnost
    Learn
    • Tutorials
    • Dokumentacija
    • Certifikati
    • Šolanje
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Prenesi
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Dogodki
    • Prevodi
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Sklici kupca
    • Podpora
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Določanje cen
  • Pomoč

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

  • CRM
  • e-Commerce
  • Knjigovodstvo
  • Zaloga
  • PoS
  • Projekt
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Ključne besede (View all)
odoo accounting v14 pos v15
About this forum
Pomoč

Get the value of one2many field in excel report

Naroči se

Get notified when there's activity on this post

This question has been flagged
one2manyreportinginvoicingOdoo13.0
2 Odgovori
5504 Prikazi
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
Opusti
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
Opusti
Suhaib Ahmed Khateeb
Avtor

Yes Ibrahim row is incremented I used row+=1

Suhaib Ahmed Khateeb
Avtor

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
Avtor

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
Avtor

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
Opusti
Enjoying the discussion? Don't just read, join in!

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

Prijavi
Related Posts Odgovori Prikazi Aktivnost
Compute field in excel report Solved
reporting invoicing Odoo13.0
Avatar
Avatar
Avatar
2
jan. 22
3007
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
3199
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
Community
  • Tutorials
  • Dokumentacija
  • Forum
Open Source
  • Prenesi
  • Github
  • Runbot
  • Prevodi
Services
  • Odoo.sh Hosting
  • Podpora
  • Nadgradnja
  • Custom Developments
  • Izobraževanje
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Sredstva blagovne znamke
  • Kontakt
  • Zaposlitve
  • Dogodki
  • Podcast
  • Blog
  • Stranke
  • Pravno • Zasebnost
  • Varnost
الْعَرَبيّة 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 is a suite of open source business apps that cover all your company needs: CRM, eCommerce, accounting, inventory, point of sale, project management, etc.

Odoo's unique value proposition is to be at the same time very easy to use and fully integrated.

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