Skip to Content
Меню
Вам необхідно зареєструватися, щоб взаємодіяти зі спільнотою.
Це запитання позначене
1292 Переглядів

Using EEv15

A very simple QWEB report to print Scope of Work for Service items has incorrect pagination after first page, the report content  from the second page onward is covered by the header. I have tried numerous things without success.

Here is the report code:


           
           

               

                   


                        Scope of Work #
                       
                   


                   

                   
                       
                           
                               
                           
                       
                       
                       
                           
                       
                       
                   

                                   
                           

               

           

           
       
       
           
               
                   
               
           
       

and images of report as follows:
https://imgbox.com/bg47WnNy
https://imgbox.com/ru41CufC



Аватар
Відмінити
Автор

not sure what went wrong with the code ...

<template id="report_bay_sow_document">
<t t-call="web.external_layout">
<div class="page">
<div class="oe_structure">
<h2 class="mt16 text-center">
Scope of Work #
<span t-field="doc.name" />
</h2>
<hr />
<table class="table table-sm o_main_table">
<thead style="background-color:#f5f3f3">
<tr>
<th name="th_scopedescription" class="text-left"><span t-field="doc.bay_fsmdesc"/></th>
</tr>
</thead>
<tbody class="sale_tbody">
<tr t-foreach="doc.fsm_order_ids" t-as="table_line">
<td name="td_templatename">
<span t-raw="table_line.todo" />
</td>
</tr>
</tbody>
</table>
</div>
</div>
</t>
</template>
<template id="report_bay_sow">
<t t-call="web.html_container">
<t t-foreach="docs" t-as="doc">
<t t-call="baysow.report_bay_sow_document" />
</t>
</t>
</template>

Related Posts Відповіді Переглядів Дія
1
трав. 24
1665
1
квіт. 25
1234
2
бер. 25
1406
4
лист. 24
7099
1
бер. 24
2032