0

我只需要每页打印十个产品。我使用了下面给出的所有可能的解决方案,没有任何帮助。

<div t-if="line_index % 20 == 0" style="page-break-after: always;">
    <br/>
</div>


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

任何帮助都是最有价值的!

4

0 回答 0