如何将记录传递到account.invoice(Odoo V11)的自定义qweb报告上的其他页面?

时间:2018-02-01 08:42:17

标签: xml odoo qweb odoo-11 odoo-view

我有一个带页眉和页脚的自定义报告模板

我从“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> 

1 个答案:

答案 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>
  • 请尝试以下代码: