I want to get the page number as Page X of Y where X is the current page number and Y is the total number of page count. I am getting pagenumber by <pageNumber/> tag but <pageCount/> is not rendering its value. Please acknowledge with solution.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Financeiro
- Inventário
- PoS
- Project
- MRP
Esta pergunta foi sinalizada
Only way to use pagecount is to put pagecount part in the beginning of your rml file.. Example:
<?xml version="1.0"?>
<document filename="test.pdf">
<template pageSize="(842.0,595.0)" title="Report Title here" author="Anankin Skywalker" allowSplitting="20">
<pageTemplate id="first">
<frame id="first" x1="0.0" y1="16.0" width="842" height="525"/>
<pageGraphic>
<drawString x="23.87cm" y="19.9cm">Page: <pageNumber/>/ of <pageCount/></drawString>
</pageGraphics>
</pageTemplate>
</template>
<stylesheet>....
You need to do it like this because pageNumber is rendered for each page as the page is rendered, but pageCount is actualy rendered after all pages are rendered because there is no way the program can know how much pages will it take for report... so the actual pageCount value is the last thing that is written to rendered pdf file...
hope this will be of help
Is your pagecount in a para or drawstring? I know there has been some troubles with pagecount in para tags.
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
Inside