Odoo 11.0 wkhtmltopdf带有page-break-inside:avoid

时间:2019-03-26 10:11:43

标签: pdf report wkhtmltopdf odoo-11

我们很少有需要打印到表格中的报告,而更具体地包含在单个<td>一幅或多幅图像中。

这是我用来打印所有图像的代码和分页符,可避免出现错误的图像分页:

<td width="23%" id="td_issue_image_before">     
    <!-- Images before-->    
    <t t-if="issue.image_ids">    
        <t t-foreach="issue.image_ids" t-as="attachment">         
            <div style="page-break-inside:avoid;">             
                <img t-att-src="'data:image/png;base64,%s' % to_text(attachment.image)" style="width:100%;margin-bottom:20px;image-resolution:70dpi;"/>        
            </div>    
        </t>   
    </t> 
</td>

问题在于,如果报表中包含很多图像,则在某些时候分页中断并且图像会重叠或覆盖新页面的<thead>

有什么我可以避免的吗?

与wkhtmltopdf有关的问题吗?

0 个答案:

没有答案