跳至内容
菜单
此问题已终结
2501 查看

e have few reports that need to print into table and more specific in a single `<td>` one or more images.Here is the code that i use to print all images and the page-break that avoid bad image pagination:

<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>

The problem is that if the report contain a lot of images, at some point the pagination break and images overlap or cover the `<thead>` of the new pages..

There is something that can i do for avoiding it?
It's a problem related to wkhtmltopdf?

形象
丢弃
相关帖文 回复 查看 活动
4
10月 20
9984
1
2月 21
3886
1
4月 25
1280
1
9月 24
1978
1
7月 24
1740