跳至内容
菜单
此问题已终结
1 回复
4744 查看

Hi everyone, I tried using a page break in odoo QWEB but the whole table gets printed in the next page.  How can i get the 2 first rows in a page and the remaining in the next . Thanks in advance

形象
丢弃
最佳答案

Hi Houssem Salem, 

Please find code in comment.

Thanks & Regards,
Email: odoo@aktivsoftware.com
Skype: kalpeshmaheshwari

形象
丢弃

You can try to apply css like,
tbody .tr:nth-child(2) {
page-break-after: always;
}
or
tbody tr{
page-break-inside: avoid;
page-break-after: auto;
}

编写者

This is my code i can't figure it out

<tbody>
<t t-set="i" t-value="1"/>
<t t-set="counter" t-value="0"/>
<t t-foreach="o.line_ids" t-as="line">

<tr class="text-center">

<td>

<span t-esc="i"/>
<t t-set="i" t-value="i+1"/>
</td>
<td>
<span t-field="line.matricule_cnss"/>
</td>
<td>
<span t-field="line.employee_name"/>
</td>
<td>
<span t-field="line.num_chezemployeur"/>
</td>
<td>
</td>
<td>
<span t-field="line.premier_mois"/>
</td>
<td>
<span t-field="line.deuxieme_mois"/>
</td>
<td>
<span t-field="line.troisieme_mois"/>
</td>
<td>
<span t-field="line.tot_gen"/>
</td>
<t t-if="counter == 2">
<p style="page-break-before;"> </p>
<t t-set="counter" t-value="0"/>
</t>
<t t-set="counter" t-value="counter + 1" />
</tr>

</t>
</tbody>

相关帖文 回复 查看 活动
1
6月 22
3129
1
4月 25
3715
0
5月 22
3284
0
5月 22
3805
1
4月 25
1056