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
  • Priemyselné odvetvia
    Retail
    • Book Store
    • Clothing Store
    • Furniture Store
    • Grocery Store
    • Hardware Store
    • Toy Store
    Food & Hospitality
    • Bar and Pub
    • Reštaurácia
    • Fast Food
    • Guest House
    • Beverage distributor
    • Hotel
    Reality
    • Real Estate Agency
    • Architecture Firm
    • Konštrukcia
    • Estate Managament
    • Gardening
    • Property Owner Association
    Poradenstvo
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Výroba
    • Textile
    • Metal
    • Furnitures
    • Jedlo
    • 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
    Iní
    • 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
  • Pomoc

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

How to put a fixed header and footer in a report in odoo 17?

Odoberať

Get notified when there's activity on this post

This question has been flagged
qwebreporttemplateodoo 17
3 Replies
8380 Zobrazenia
Avatar
Enzo

I am in odoo 17, and I need to create a report which will have many invoice details, this will make it have many pages, so I need to have a fixed header and footer so that it is displayed on each page, I have been looking for information but I can't find how do it

0
Avatar
Zrušiť
Asha

Have you got solution for this? I am also having similar kind of requirement, I have to display header and footer on all pages. It was working on Odoo16 but not working on odoo17.

Avatar
Cybrosys Techno Solutions Pvt.Ltd
Best Answer

Hi, 


To add the header and footer for each page, try with the following.

1- Create a custom layout and add header and footer to the custom layout.

<template id="report_custom_external_layout">
<!-- Multicompany -->
<t t-if="not o and doc">
<t t-set="o" t-value="doc"/>
</t>
<t t-if="o and 'company_id' in o">
<t t-set="company" t-value="o.company_id"></t>
</t>
<t t-if="not o or not 'company_id' in o">
<t t-set="company" t-value="res_company"></t>
</t>
<div class="header">
<div class="row">
<img t-if="company.custom_report_header"
t-att-src="image_data_uri(company.custom_report_header)"
alt="Logo" width="100%"/> # optional
</div>
</div>
<div class="footer o_standard_footer" style="position: relative;">
<div style="width: 100%;">
<img t-if="company.custom_report_footer"
t-att-src="image_data_uri(company.custom_report_footer)"
alt="Logo" width="100%"/> # optional
</div>
</div>
<div class="article o_report_layout_standard"
t-att-data-oe-model="o and o._name"
t-att-data-oe-id="o and o.id"
t-att-data-oe-lang="o and o.env.context.get('lang')">
<t t-raw="0"/>
</div>
</template>

2- While calling the template, add the custom layout.


<template id="report_template">
<t t-call="web.html_container">
<t t-call="module_name.report_custom_external_layout">
#
#
# Table contents
#
#

</t>
</t>
</template>



This will result header and footer displaying on each page.



Hope it helps

1
Avatar
Zrušiť
Avatar
Gracious Joseph
Best Answer

To create a report in Odoo 17 with a fixed header and footer that appears on every page, you can leverage QWeb reports and CSS properties. Here's a step-by-step guide:

1. Design Your Report Template

The QWeb report is an XML-based template that defines how your report is rendered. To add fixed headers and footers:

Header and Footer in the Template

Use <header> and <footer> tags in your QWeb template to define content that repeats on every page.

Example:

xmlCopy code<?xml version="1.0" encoding="UTF-8"?>
<template id="report_invoice_document">
    <t t-call="web.html_container">
        <t t-foreach="docs" t-as="doc">
            <t t-call="web.external_layout">
                <div class="page">
                    <!-- Fixed Header -->
                    <header class="header">
                        <div>Invoice Report</div>
                        <div>Company: <t t-esc="doc.company_id.name" /></div>
                        <div>Date: <t t-esc="doc.date_invoice" /></div>
                    </header>

                    <!-- Main Content -->
                    <div class="content">
                        <h3>Invoice Details</h3>
                        <table>
                            <thead>
                                <tr>
                                    <th>Product</th>
                                    <th>Quantity</th>
                                    <th>Price</th>
                                    <th>Total</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr t-foreach="doc.invoice_line_ids" t-as="line">
                                    <td><t t-esc="line.product_id.name" /></td>
                                    <td><t t-esc="line.quantity" /></td>
                                    <td><t t-esc="line.price_unit" /></td>
                                    <td><t t-esc="line.price_subtotal" /></td>
                                </tr>
                            </tbody>
                        </table>
                    </div>

                    <!-- Fixed Footer -->
                    <footer class="footer">
                        <div>Page <span class="page-number"></span> of <span class="page-total"></span></div>
                        <div>Company Address: <t t-esc="doc.company_id.partner_id.contact_address" /></div>
                        <div>Thank you for your business!</div>
                    </footer>
                </div>
            </t>
        </t>
    </t>
</template>

2. Add CSS for Fixed Positioning

To ensure the header and footer remain fixed on every page, add the following CSS rules to your report styles:

xmlCopy code<?xml version="1.0" encoding="UTF-8"?>
<template id="report_styles" inherit_id="web.report_assets_common">
    <xpath expr="." position="inside">
        <style>
            /* Ensure the header is fixed at the top */
            .header {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 50px; /* Adjust height as needed */
                background-color: #f5f5f5;
                text-align: center;
                border-bottom: 1px solid #ddd;
                padding: 10px;
            }

            /* Ensure the footer is fixed at the bottom */
            .footer {
                position: fixed;
                bottom: 0;
                left: 0;
                width: 100%;
                height: 50px; /* Adjust height as needed */
                background-color: #f5f5f5;
                text-align: center;
                border-top: 1px solid #ddd;
                padding: 10px;
            }

            /* Content area - Avoid overlap with header/footer */
            .content {
                margin-top: 60px; /* Adjust according to header height */
                margin-bottom: 60px; /* Adjust according to footer height */
            }

            /* Page break styling */
            .page {
                page-break-after: always;
            }
        </style>
    </xpath>
</template>

3. Link Your Stylesheet to the Report

Ensure your custom stylesheet is linked to the report. Add this to your report XML:

xmlCopy code<template id="report_invoice_document_action" inherit_id="account.report_invoice_document">
    <xpath expr="//t[@t-call='web.external_layout']" position="replace">
        <t t-call="your_module_name.report_invoice_document" />
    </xpath>
</template>

Replace your_module_name with the name of your module.

4. Adjust Pagination for PDF Rendering

Odoo uses wkhtmltopdf to render reports as PDFs. Ensure proper pagination and accurate display of headers/footers:

  • Use the @media print CSS rule for print-specific adjustments.
  • Ensure page-break-inside: avoid; is used for critical elements like tables.

Example:

cssCopy code@media print {
    .content table {
        page-break-inside: avoid;
    }
}

5. Enable Dynamic Page Numbers

For page numbers, add placeholders in your footer that wkhtmltopdf recognizes:

xmlCopy code<footer class="footer">
    <div>Page <span class="page-number"></span> of <span class="page-total"></span></div>
</footer>

Ensure wkhtmltopdf is updated to a compatible version (0.12.6 or higher) for the best results.

6. Test Your Report

  • Go to Settings > Technical > Reports.
  • Locate your report, ensure it is correctly linked, and print a preview.
  • Adjust the layout if necessary.

1
Avatar
Zrušiť
Avatar
John Roy A. Geralde
Best Answer

Can I do these with a specific paper format say"A4 Portrait"?

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
How to remove the horizontal line from the footer in odoo 17? Solved
qweb report template 17 odoo 17
Avatar
Avatar
Avatar
2
apr 25
1717
odoo 16 report target new page scss
qweb report
Avatar
Avatar
1
apr 25
2189
Missing external identifier on new external layout template Solved
qweb report
Avatar
Avatar
2
mar 25
2781
Translate month name in t-esc Qweb report Solved
qweb report
Avatar
Avatar
Avatar
Avatar
Avatar
4
nov 24
8148
QWeb Report Shows Different When Edit And Print Review Solved
qweb report
Avatar
Avatar
1
mar 24
2962
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