Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
2549 Widoki

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?

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
4
paź 20
10065
1
lut 21
3955
1
sie 25
173
1
kwi 25
1461
1
wrz 24
2139