Skip to Content
Odoo Menu
  • Sign in
  • Try it free
  • Apps
    Finance
    • Accounting
    • Invoicing
    • Expenses
    • Spreadsheet (BI)
    • Documents
    • Sign
    Sales
    • CRM
    • Sales
    • POS Shop
    • POS Restaurant
    • Subscriptions
    • Rental
    Websites
    • Website Builder
    • eCommerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Supply Chain
    • Inventory
    • Manufacturing
    • PLM
    • Purchase
    • Maintenance
    • Quality
    Human Resources
    • Employees
    • Recruitment
    • Time Off
    • Appraisals
    • Referrals
    • Fleet
    Marketing
    • Social Marketing
    • Email Marketing
    • SMS Marketing
    • Events
    • Marketing Automation
    • Surveys
    Services
    • Project
    • Timesheets
    • Field Service
    • Helpdesk
    • Planning
    • Appointments
    Productivity
    • Discuss
    • Approvals
    • IoT
    • VoIP
    • Knowledge
    • 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 Management
    • Gardening
    • Property Owner Association
    Consulting
    • Accounting Firm
    • Odoo Partner
    • Marketing Agency
    • Law firm
    • Talent Acquisition
    • Audit & Certification
    Manufacturing
    • Textile
    • Metal
    • Furnitures
    • Food
    • Brewery
    • Corporate Gifts
    Health & Fitness
    • Sports Club
    • Eyewear Store
    • Fitness Center
    • Wellness Practitioners
    • Pharmacy
    • Hair Salon
    Trades
    • Handyman
    • IT Hardware & 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
  • Community
    Learn
    • Tutorials
    • Documentation
    • Certifications
    • Training
    • Blog
    • Podcast
    Empower Education
    • Education Program
    • Scale Up! Business Game
    • Visit Odoo
    Get the Software
    • Download
    • Compare Editions
    • Releases
    Collaborate
    • Github
    • Forum
    • Events
    • Translations
    • Become a Partner
    • Services for Partners
    • Register your Accounting Firm
    Get Services
    • Find a Partner
    • Find an Accountant
    • Meet an advisor
    • Implementation Services
    • Customer References
    • Support
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Get a demo
  • Pricing
  • Help

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

  • CRM
  • e-Commerce
  • Accounting
  • Inventory
  • PoS
  • Project
  • MRP
All apps
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
You need to be registered to interact with the community.
All Posts People Badges
Tags (View all)
odoo accounting v14 pos v15
About this forum
Help

Page number qweb-pdf

Subscribe

Get notified when there's activity on this post

This question has been flagged
v8qwebreportingpagenumber
1 Reply
12519 Views
Avatar
Javier Batres Velásquez

Hello I need add the page number on my report, I have seen that this is only "<span>Page </span><span class="page" /> of <span class="topage" />" but it doesn't work, can someone say me how solve that.

Here is my XML:

    

<openerp>
    <data>
        <report
                id="report_sale_utilities"
                model="velfasa.wizard"
                string="Reporte de utilidad"
                name="velfasa.utilities"
                file="velfasa.utilities"
                report_type="qweb-pdf"
                menu="False"/>

        <template id="utilities">
            <t t-call="report.html_container">
                <t t-foreach="docs" t-as="doc">
                    <t t-call="report.external_layout">
                        <div class="page">
                            <div style="float:right;">
                                <table>
                                    <tr>
                                        <td style="border-right: 1px dotted #F2F2F2;">
                                            <div style="padding: 5px;"><t t-esc="time.strftime('%Y-%m-%d')"></t></div>
                                        </td>
                                        <td>
                                            <div style="padding: 5px;"><t t-esc="user.name"></t></div>
                                        </td>
                                    </tr>
                                </table>
                            </div>
                            <br/>
                            <h1>Reporte de utilidades</h1>
                            <br/>
                            <table>
                                <tr>
                                    <td style="border-right: 1px dotted #F2F2F2; font-size: 15px;">
                                        <div style="padding-left: 5px; padding-right: 5px; padding-bottom 5px; ">Fecha de inicio:</div>
                                    </td>
                                    <td>
                                        <div style="padding-left: 5px; padding-right: 5px; padding-bottom 5px; "><t t-esc="doc.inicio" /></div>
                                    </td>
                                </tr>
                                <tr>
                                    <td style="border-right: 1px dotted #F2F2F2; font-size: 15px;">
                                        <div style="padding-left: 5px; padding-right: 5px; padding-bottom 5px; ">Fecha de fin:</div>
                                    </td>
                                    <td>
                                        <div style="padding-left: 5px; padding-right: 5px; padding-bottom 5px; "><t t-esc="doc.fin" /></div>
                                    </td>
                                </tr>
                            </table>
                            <br/>
                            <t t-set="costos" t-value="json.loads(doc.costos)" />
                            <t t-set="ventas" t-value="json.loads(doc.ventas)" />
                            <t t-set="cantidades" t-value="json.loads(doc.cantidades)" />
                            <style>
                                th{
                                border-bottom: 1px solid black;
                                font-size: 15px;
                                padding: 5px;
                                }
                                thead{
                                display: table-header-group;
                                }
                                .tabla{
                                width: 100%;
                                }
                                .tabla > td{
                                border-bottom: 1px dotted #F2F2F2;
                                padding: 5px;
                                }
                                .cantidad{
                                text-align: right;
                                }
                                .total{
                                border-top: 1px solid black;
                                border-bottom: 1px solid black;
                                font-weight: bold;
                                }
                                .producto{
                                width: 550px;
                                }
                            </style>
                            <table class="tabla">
                                <thead>
                                    <tr>
                                        <th class="producto">Producto</th>
                                        <th>Cantidad</th>
                                        <th>Precio de venta</th>
                                        <th>Costo</th>
                                        <th>Utilidad</th>
                                    </tr>
                                </thead>
                                <tbody>
                                    <t t-set="ventaF" t-value="0"/>
                                    <t t-set="costoF" t-value="0"/>
                                    <t t-set="cantidadF" t-value="0"/>
                                    <t t-foreach="doc.product_ids" t-as="product_id" >
                                        <t t-set="venta" t-value="ventas[str(product_id.id)]"/>
                                        <t t-set="costo" t-value="costos[str(product_id.id)]"/>
                                        <t t-set="cantidadA" t-value="cantidades[str(product_id.id)]"/>
                                        <t t-set="ventaF" t-value="ventaF + venta"/>
                                        <t t-set="costoF" t-value="costoF + costo"/>
                                        <t t-set="cantidadF" t-value="cantidadF + cantidadA"/>
                                        <t t-set="utilidad" t-value="venta-costo" />
                                        <tr>
                                            <td class="producto">
                                                <t t-esc="product_id.name" />
                                            </td>
                                            <td class="cantidad">
                                                <t t-esc="'{0:,}'.format(int(cantidadA))" />
                                            </td>
                                            <td class="cantidad">
                                                <t t-esc="'{0:,.2f}'.format(round(float(venta), 2))" />
                                            </td>
                                            <td class="cantidad">
                                                <t t-esc="'{0:,.2f}'.format(round(float(costo), 2))" />
                                            </td>
                                            <td class="cantidad">
                                                <t t-esc="'{0:,.2f}'.format(round(float(utilidad), 2))" />
                                            </td>
                                        </tr>
                                        <t t-if="product_id_last">
                                            <!--<table style="float: bottom;">-->
                                            <tr>
                                                <td class="total">
                                                    Totales
                                                </td>
                                                <td class="cantidad total">
                                                    <t t-esc="'{0:,}'.format(int(cantidadF))" />
                                                </td>
                                                <td class="cantidad total">
                                                    <t t-esc="'{0:,.2f}'.format(round(float(ventaF), 2))" />
                                                </td>
                                                <td class="cantidad total">
                                                    <t t-esc="'{0:,.2f}'.format(round(float(costoF), 2))" />
                                                </td>
                                                <td class="cantidad total">
                                                    <t t-set="utilidad" t-value="ventaF - costoF" />
                                                    <t t-esc="'{0:,.2f}'.format(round(float(utilidad), 2))" />
                                                </td>
                                            </tr>
                                            <!--</table>-->
                                        </t>
                                    </t>
                                </tbody>
                            </table>
                            <div class="footer">
                                <div class="text-right" style="border-top: 1px solid black;">
                                    <ul class="list-inline">
                                        <li>Page:</li>
                                        <li><span class="page"/></li>
                                        <li>/</li>
                                        <li><span class="topage"/></li>
                                    </ul>
                                </div>
                            </div>
                        </div>

                    </t>
                </t>
            </t>
        </template>
        <template id="external_layout_footer">
            <div class="footer">
                <div class="text-right" style="border-top: 1px solid black;">
                    <ul class="list-inline">
                        <li>Page:</li>
                        <li><span class="page"/></li>
                        <li>/</li>
                        <li><span class="topage"/></li>
                    </ul>
                </div>
            </div>
        </template>
        <record id="paperformat_utilities" model="report.paperformat" >
            <field name="name" >Utilidades</field>
            <field name="orientation" >Portrait</field>
            <field name="margin_top">10</field>
            <field name="format">Letter</field>
        </record>
        <record id="report_sale_utilities" model="ir.actions.report.xml">
            <field name="paperformat_id" ref="paperformat_utilities" />
        </record>
    </data>
</openerp>

 

0
Avatar
Discard
Avatar
Vasanth
Best Answer

hi Javier,

you can get the answer in the following link:

https://www.odoo.com/forum/help-1/question/how-to-add-page-number-in-qweb-reports-in-odoo-74996#answer-75267

3
Avatar
Discard
Javier Batres Velásquez
Author

Hello i am trying this method but it doesn't work. And I don't know if you can help me to show the thead of a table on each page.

Enjoying the discussion? Don't just read, join in!

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

Sign up
Related Posts Replies Views Activity
Sum on QWeb reports Solved
v8 qweb reporting
Avatar
Avatar
Avatar
Avatar
3
Mar 21
44772
Problem with QWeb report
v8 qweb reporting odoo8
Avatar
Avatar
Avatar
2
May 15
8457
A module with a print button so I can learn?
v8 qweb print reporting
Avatar
0
Mar 15
3438
How can I display all tasks (including completed ones) in a QWeb report in Odoo?
qweb reporting
Avatar
Avatar
2
Sep 24
3040
QWEB: Place full width image on page Solved
v8 qweb
Avatar
Avatar
1
Jun 21
8693
Community
  • Tutorials
  • Documentation
  • Forum
Open Source
  • Download
  • Github
  • Runbot
  • Translations
Services
  • Odoo.sh Hosting
  • Support
  • Upgrade
  • Custom Developments
  • Education
  • Find an Accountant
  • Find a Partner
  • Become a Partner
About us
  • Our company
  • Brand Assets
  • Contact us
  • Jobs
  • Events
  • Podcast
  • Blog
  • Customers
  • Legal • Privacy
  • Security
الْعَرَبيّة 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