我有一个带页眉和页脚的自定义报告模板
我从“web.external_layout_standard”
扩展了这个页眉和页脚如何在报告页面上指定记录数。
例如,我希望产品在16日之后切换到另一页。我有像图片这样的问题。
图片链接: https://i.hizliresim.com/8YZDMk.png
我正在尝试此代码,但无法正常工作:
<t t-if="counter==16 and line['price_subtotal']">
<tr class="text-right" style="border:0;border-top:0">
<td colspan="6">
<strong>Ara Toplam:</strong>
<span>
<t t-esc="subtotal" t-options="{'widget':'monetary',
'display_currency':o.currency_id}"/>
</span>
</td>
</tr>
<t t-set="counter" t-value="0" />
<div style="page-break-after:auto;"></div>
</t>
答案 0 :(得分:0)
<t t-set="count" t-value="0"/>
<t t-set="page" t-value="16"/>
<t t-foreach="your_loop_variable" t-as="c">
<t t-if="counter==16 and line['price_subtotal']">
<tr class="text-right" style="border:0;border-top:0">
<td colspan="6">
<strong>Ara Toplam:</strong>
<span>
<t t-esc="subtotal" t-options="{'widget':'monetary',
'display_currency':o.currency_id}"/>
</span>
</td>
</tr>
<t t-set="counter" t-value="0" />
<t t-set="count" t-value="count+1" />
<t t-if="count==page">
<p style="page-break-after:auto;"></p>
<t t-set="page" t-value="page+16" />
</t>
</t>
</t>