Skip to Content
Odoo Menu
  • Log ind
  • Prøv gratis
  • Apps
    Økonomi
    • Bogføring
    • Fakturering
    • Udgifter
    • Regneark (BI)
    • Dokumenter
    • e-Signatur
    Salg
    • CRM
    • Salg
    • POS Butik
    • POS Restaurant
    • Abonnementer
    • Udlejning
    Hjemmeside
    • Hjemmesidebygger
    • e-Handel
    • Blog
    • Forum
    • LiveChat
    • e-Læring
    Forsyningskæde
    • Lagerbeholdning
    • Produktion
    • PLM
    • Indkøb
    • Vedligeholdelse
    • Kvalitet
    HR
    • Medarbejdere
    • Rekruttering
    • Fravær
    • Medarbejdersamtaler
    • Anbefalinger
    • Flåde
    Marketing
    • Markedsføring på sociale medier
    • E-mailmarketing
    • SMS-marketing
    • Arrangementer
    • Automatiseret marketing
    • Spørgeundersøgelser
    Tjenester
    • Projekt
    • Timesedler
    • Udkørende Service
    • Kundeservice
    • Planlægning
    • Aftaler
    Produktivitet
    • Dialog
    • Godkendelser
    • IoT
    • VoIP
    • Vidensdeling
    • WhatsApp
    Tredjepartsapps Odoo Studio Odoo Cloud-platform
  • Brancher
    Detailhandel
    • Boghandel
    • Tøjforretning
    • Møbelforretning
    • Dagligvarebutik
    • Byggemarked
    • Legetøjsforretning
    Mad og værtsskab
    • Bar og pub
    • Restaurant
    • Fastfood
    • Gæstehus
    • Drikkevareforhandler
    • Hotel
    Ejendom
    • Ejendomsmægler
    • Arkitektfirma
    • Byggeri
    • Ejendomsadministration
    • Havearbejde
    • Boligejerforening
    Rådgivning
    • Regnskabsfirma
    • Odoo-partner
    • Marketingbureau
    • Advokatfirma
    • Rekruttering
    • Audit & certificering
    Produktion
    • Tekstil
    • Metal
    • Møbler
    • Fødevareproduktion
    • Bryggeri
    • Firmagave
    Heldbred & Fitness
    • Sportsklub
    • Optiker
    • Fitnesscenter
    • Kosmetolog
    • Apotek
    • Frisør
    Håndværk
    • Handyman
    • IT-hardware og support
    • Solenergisystemer
    • Skomager
    • Rengøringsservicer
    • VVS- og ventilationsservice
    Andet
    • Nonprofitorganisation
    • Miljøagentur
    • Udlejning af billboards
    • Fotografi
    • Cykeludlejning
    • Softwareforhandler
    Gennemse alle brancher
  • Community
    Få mere at vide
    • Tutorials
    • Dokumentation
    • Certificeringer
    • Oplæring
    • Blog
    • Podcast
    Bliv klogere
    • Udannelselsesprogram
    • Scale Up!-virksomhedsspillet
    • Besøg Odoo
    Få softwaren
    • Download
    • Sammenlign versioner
    • Udgaver
    Samarbejde
    • Github
    • Forum
    • Arrangementer
    • Oversættelser
    • Bliv partner
    • Tjenester til partnere
    • Registrér dit regnskabsfirma
    Modtag tjenester
    • Find en partner
    • Find en bogholder
    • Kontakt en rådgiver
    • Implementeringstjenester
    • Kundereferencer
    • Support
    • Opgraderinger
    Github Youtube Twitter LinkedIn Instagram Facebook Spotify
    +1 (650) 691-3277
    Få en demo
  • Prissætning
  • Hjælp

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

  • CRM
  • e-Commerce
  • Bogføring
  • Lager
  • PoS
  • Projekt
  • MRP
All apps
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Du skal være registreret for at interagere med fællesskabet.
All Posts People Emblemer
Tags (View all)
odoo accounting v14 pos v15
Om dette forum
Hjælp

PDF Creating (rendering issue)

Tilmeld

Få besked, når der er aktivitet på dette indlæg

Dette spørgsmål er blevet anmeldt
invoiceqwebtableproformarender_templateodoo17
1 Svar
1155 Visninger
Avatar
Kalana Piyumantha

This is one of my report template, but these product images are not visible , and These rows are too near to each and How can I customize this as much as possible? And How Can I  Improve the report look? I am a beginner,

<odoo>
<!-- Inherit the Pro-forma report template -->
<template id="proforma_invoice_report_custom">
<t t-call="company_sale_proforma_invoice_layout.proforma_common_layout">
<t t-set="company" t-value="doc.company_id"/>
<table style="width:100%; border:1pt solid black; border-collapse:collapse; margin-top:20px;">
<thead>
<tr>
<th style="border:1pt solid black;">Image</th>
<th style="border:1pt solid black;">Product</th>
<th style="border:1pt solid black;">Description</th>
<th style="border:1pt solid black;">Quantity</th>
<th style="border:1pt solid black;">Unit Price</th>
<th style="border:1pt solid black;">Discount (%)</th>
<th style="border:1pt solid black;">Subtotal</th>
</tr>
</thead>
<tbody>
<tr t-foreach="doc.order_line" t-as="line">
<!-- Product Image -->
<td style="border:1pt solid black; text-align:center;">
<img t-if="line.product_id.image_1024"
t-att-src="'data:image/png;base64,%s' % line.product_id.image_1024"
style="max-height:45px; max-width:90px;"/>
</td>
<!-- Product Name -->
<td style="border:1pt solid black;">
<t t-esc="line.product_id.display_name"/>
</td>
<!-- Description -->
<td style="border:1pt solid black;">
<t t-esc="line.name"/>
</td>
<!-- Quantity -->
<td style="border:1pt solid black; text-align:right;">
<t t-esc="line.product_uom_qty"/>
</td>
<!-- Unit Price -->
<td style="border:1pt solid black; text-align:right;">
<t t-esc="line.price_unit"
t-options="{'widget': 'monetary', 'display_currency': doc.currency_id}"/>
</td>
<!-- Discount -->
<td style="border:1pt solid black; text-align:right;">
<t t-esc="line.discount"
t-options="{'widget': 'monetary', 'display_currency':doc.currency_id}"/>
</td>
<!-- Subtotal -->
<td style="border:1pt solid black; text-align:right;">
<t t-esc="line.price_subtotal"
t-options="{'widget':'monetary', 'display_currency':doc.currency_id}"/>
</td>
</tr>
</tbody>
</table>
</t>
</template>
</odoo>
0
Avatar
Kassér
Avatar
Cybrosys Techno Solutions Pvt.Ltd
Bedste svar

Hi,


To add the image to the template, try the following code

<!-- Product Image -->
<td style="border:1pt solid black; text-align:center;">
<img t-if="line.product_id.image_1024"
t-att-src="image_data_uri(line.product_id.image_1024)"
style="max-height:45px; max-width:90px;"/>
</td>


To adjust the width of a table column, we need to use inline styles.

<th style="width: 30%;">Image</th>
<th style="width: 50px;">Product</th>

Add width to all columns.


Hope it helps.

0
Avatar
Kassér
Enjoying the discussion? Don't just read, join in!

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

Tilmeld dig
Related Posts Besvarelser Visninger Aktivitet
How can I inherit pro forma invoice in odoo17?
invoice qweb templates reports proforma odoo
Avatar
Avatar
Avatar
2
jun. 25
1296
External Layout not showing in pdf
qweb odoo17
Avatar
Avatar
2
feb. 25
2957
Custom background
qweb template odoo17
Avatar
0
dec. 24
1995
Change arabic font in qweb report
qweb font odoo17
Avatar
Avatar
Avatar
2
feb. 25
2366
Odoo Invoice PDF download from External API
pdf invoice odoo17
Avatar
0
okt. 24
2877
Community
  • Tutorials
  • Dokumentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Oversættelser
Tjenester
  • Odoo.sh-hosting
  • Support
  • Opgradere
  • Individuelt tilpasset udvikling
  • Uddannelse
  • Find en bogholder
  • Find en partner
  • Bliv partner
Om os
  • Vores virksomhed
  • Brandaktiver
  • Kontakt os
  • Stillinger
  • Arrangementer
  • Podcast
  • Blog
  • Kunder
  • Juridiske dokumenter • Privatlivspolitik
  • Sikkerhedspolitik
الْعَرَبيّة 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 er en samling open source-forretningsapps, der dækker alle dine virksomhedsbehov – lige fra CRM, e-handel og bogføring til lagerstyring, POS, projektledelse og meget mere.

Det unikke ved Odoo er, at systemet både er brugervenligt og fuldt integreret.

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