Pular para o conteúdo
Odoo Menu
  • Entrar
  • Experimente grátis
  • Aplicativos
    Finanças
    • Financeiro
    • Faturamento
    • Despesas
    • Planilhas (BI)
    • Documentos
    • Assinar Documentos
    Vendas
    • CRM
    • Vendas
    • PDV Loja
    • PDV Restaurantes
    • Assinaturas
    • Locação
    Websites
    • Criador de Sites
    • e-Commerce
    • Blog
    • Fórum
    • Chat ao Vivo
    • e-Learning
    Cadeia de mantimentos
    • Inventário
    • Fabricação
    • PLM - Ciclo de Vida do Produto
    • Compras
    • Manutenção
    • Qualidade
    Recursos Humanos
    • Funcionários
    • Recrutamento
    • Folgas
    • Avaliações
    • Indicações
    • Frota
    Marketing
    • Redes Sociais
    • Marketing por E-mail
    • Marketing por SMS
    • Eventos
    • Automação de Marketing
    • Pesquisas
    Serviços
    • Projeto
    • Planilhas de Horas
    • Serviço de Campo
    • Central de Ajuda
    • Planejamento
    • Compromissos
    Produtividade
    • Mensagens
    • Aprovações
    • Internet das Coisas
    • VoIP
    • Conhecimento
    • WhatsApp
    Aplicativos de terceiros Odoo Studio Plataforma Odoo Cloud
  • Setores
    Varejo
    • Loja de livros
    • Loja de roupas
    • Loja de móveis
    • Mercearia
    • Loja de ferramentas
    • Loja de brinquedos
    Comida e hospitalidade
    • Bar e Pub
    • Restaurante
    • Fast Food
    • Hospedagem
    • Distribuidor de bebidas
    • Hotel
    Imóveis
    • Imobiliária
    • Escritório de arquitetura
    • Construção
    • Administração de propriedades
    • Jardinagem
    • Associação de proprietários de imóveis
    Consultoria
    • Escritório de Contabilidade
    • Parceiro Odoo
    • Agência de marketing
    • Escritório de advocacia
    • Aquisição de talentos
    • Auditoria e Certificação
    Fabricação
    • Têxtil
    • Metal
    • Móveis
    • Alimentação
    • Cervejaria
    • Presentes corporativos
    Saúde e Boa forma
    • Clube esportivo
    • Loja de óculos
    • Academia
    • Profissionais de bem-estar
    • Farmácia
    • Salão de cabeleireiro
    Comércio
    • Handyman
    • Hardware e Suporte de TI
    • Sistemas de energia solar
    • Sapataria
    • Serviços de limpeza
    • Serviços de climatização
    Outros
    • Organização sem fins lucrativos
    • Agência Ambiental
    • Aluguel de outdoors
    • Fotografia
    • Aluguel de bicicletas
    • Revendedor de software
    Navegar por todos os setores
  • Comunidade
    Aprenda
    • Tutoriais
    • Documentação
    • Certificações
    • Treinamento
    • Blog
    • Podcast
    Empodere a Educação
    • Programa de educação
    • Scale Up! Jogo de Negócios
    • Visite a Odoo
    Obtenha o Software
    • Baixar
    • Comparar edições
    • Releases
    Colaborar
    • Github
    • Fórum
    • Eventos
    • Traduções
    • Torne-se um parceiro
    • Serviços para parceiros
    • Cadastre seu escritório contábil
    Obtenha os serviços
    • Encontre um parceiro
    • Encontre um Contador
    • Conheça um consultor
    • Serviços de Implementação
    • Referências de Clientes
    • Suporte
    • Upgrades
    Github YouTube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Faça uma demonstração
  • Preços
  • Ajuda

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

  • CRM
  • e-Commerce
  • Financeiro
  • Inventário
  • PoS
  • Projeto
  • MRP
All apps
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
É necessário estar registrado para interagir com a comunidade.
Todas as publicações Pessoas Emblemas
Marcadores (Ver tudo)
odoo accounting v14 pos v15
Sobre este fórum
Ajuda

There is an issue with the Odoo 16 PDF report where the content of a table row is moving to the next page.

Inscrever

Seja notificado quando houver atividade nesta publicação

Esta pergunta foi sinalizada
qwebpdfreportodoov16
1 Responder
2694 Visualizações
Avatar
Mathesh

In Odoo 16, inside a table, if the content of a row is too long and doesn't fit on the first page, the entire row moves to the next page. However, when the content is too long for the second page as well, the row gets split, with part of the content appearing on the first page and the rest on the second page. I want it to behave differently: if the content doesn't fit on the first page, it should be split at that point, rather than moving the entire row to the next page. as mentioned below.


  1. doesn't fit to the first page:

  2. when doesn't fit to the second page also:


Thanks,

0
Avatar
Cancelar
Avatar
Dmitriy Stepanov
Melhor resposta

Hello,

The issue where table rows in Odoo PDF reports split or move to the next page is commonly related to the limitations of the PDF rendering library used in Odoo, typically wkhtmltopdf. To resolve this issue in Odoo 16 where rows in a table get split across pages, you will need to modify the way Odoo handles table row breaks when generating reports. By default, Odoo handles row content in a way that tries to keep the row together, but in cases where the content is too long, it can split the row. You can adjust the behavior by modifying the report template or the QWeb report styles.

Here's how you can address this issue:

1. Override the QWeb Template:

You will need to update the report template for your specific report, particularly if you are dealing with tables inside a report like invoices, sales orders, or custom reports.

Find the QWeb template associated with the report (usually in views/report_*).

If the issue is with a table row not splitting, add a page-break-inside: auto; CSS property to the row (<tr>) or a surrounding block element.

2. Modify the CSS for the Table Rows:

Modify the CSS to prevent the table row from staying together. You can use the page-break-inside CSS property. By default, Odoo might have this set to avoid, which means the row tries to avoid splitting and moves to the next page entirely if it doesn't fit. You will want to change this to auto so that the row can be split.

Here's an example of how to modify the page-break-inside CSS for the row:

table {

width: 100%;

border-collapse: collapse;

}

tr {

page-break-inside: auto; /* Allows row content to be split across pages */

}

td, th {

padding: 5px;

border: 1px solid #ddd;

}

This CSS will ensure that the row can be split if the content is too large to fit on the page.

3. Add a page-break-after or page-break-before for Specific Rows:

If you want to have more control over when a row is forced onto a new page (for example, for very long content), you can use page-break-after or page-break-before properties on specific rows.

Example:

.long-content-row {

page-break-after: always; /* Forces the row to start on the next page */

}

Apply this class to the specific row that needs to break and be on the next page.

4. Update the Report's style Block:

If the report's template does not have a CSS style block, you can add one to the QWeb report definition. If you're using a custom report, you can include the style block in your template:

<t t-name="your_module.report_template">

<style>

tr {

page-break-inside: auto; /* Allows row splitting */

}

.long-content-row {

page-break-after: always; /* Force next row to be on the next page */

}

</style>

<table>

<tr>

<td>Content</td>

</tr>

</table>

</t>

5. Test and Refine the Output:

After modifying the CSS and template, generate a report and test the layout. You should see that if the content is too long to fit on the first page, it will now split at the point where necessary, instead of moving the entire row to the next page. If there are any issues with content overlapping or not being split as expected, you may need to adjust the styles further.

Another approach:

1. Optimize wkhtmltopdf Settings

If you have control over wkhtmltopdf options, try enabling --disable-smart-shrinking or modifying other parameters to improve rendering.

Update the report.paperformat in Odoo to include these options:

Navigate to Settings > Technical > Reports > Paper Formats.

In the "Custom Paper Format" options, add or modify the "Custom Options" field with:

--disable-smart-shrinking

2. Consider Upgrading wkhtmltopdf

Ensure that you are using a stable and updated version of wkhtmltopdf. Some older versions have rendering issues with complex table layouts.

Recommended version: 0.12.6 or higher (as of recent stable releases).

0
Avatar
Cancelar
Está gostando da discussão? Não fique apenas lendo, participe!

Crie uma conta hoje mesmo para aproveitar os recursos exclusivos e interagir com nossa incrível comunidade!

Inscreva-se
Publicações relacionadas Respostas Visualizações Atividade
Avoid Page break inside table due to long content
qweb pagebreak long-content pdfreport
Avatar
0
set. 25
3838
Generate Delivery Report Separately One Click from Sale Order
qweb qweb-report PDF pdfreport
Avatar
Avatar
1
fev. 22
2945
Odoo 18: Display image from char field containing url in qweb form
qweb
Avatar
Avatar
1
jul. 25
2948
PDF Export Option for QWeb Reports in odoo 17.0
qweb
Avatar
Avatar
1
mai. 25
3701
QWeb: use t-if to check birthday date Resolvido
qweb
Avatar
Avatar
1
abr. 25
3221
Comunidade
  • Tutoriais
  • Documentação
  • Fórum
Open Source
  • Baixar
  • Github
  • Runbot
  • Traduções
Serviços
  • Odoo.sh Hosting
  • Suporte
  • Upgrade
  • Desenvolvimentos personalizados
  • Educação
  • Encontre um Contador
  • Encontre um parceiro
  • Torne-se um parceiro
Sobre nós
  • Nossa empresa
  • Ativos da marca
  • Contato
  • Empregos
  • Eventos
  • Podcast
  • Blog
  • Clientes
  • Legal • Privacidade
  • Segurança
الْعَرَبيّة 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 é um conjunto de aplicativos de negócios em código aberto que cobre todas as necessidades de sua empresa: CRM, comércio eletrônico, contabilidade, estoque, ponto de venda, gerenciamento de projetos, etc.

A proposta de valor exclusiva Odoo é ser, ao mesmo tempo, muito fácil de usar e totalmente integrado.

Site feito com

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