Reports in rml Openerp

In my purchase order report template, I have a table that displays the details of the purchase order. These are the products that I added in my purchase order. But when at least 20 products are added, the products in the template are simply overwritten on the footer of my purchase order template. I used the tag to hack the page, but did not work.

<condPageBreak height="600"/> 

any help?

+1
source share
1 answer

By changing the height of the frame, the problem will be solved. my original frame id was as follows:

<frame id="first" x1="34.0" y1="28.0" width="530" height="786"/>

i changed the above to the following:

<frame id="first" x1="18.0" y1="42.0" width="535" height="600"/> 
+1
source

All Articles