如何在发票 PDF 的每一页上重复发票编号
How to repeat the invoice number on each pages of an invoice PDF
当我生成发票 PDF 以供下载或打印时,我需要在同一张发票的所有页面上显示发票编号。我该怎么做?
<template id="external_layout_header_inherited" inherit_id="report.external_layout_header">
<xpath expr="//div[@class='header']" position="inside">
<div t-if="o.number">Ref.: <span t-field="o.number"/></div>
</xpath>
</template>
您可以像上面的示例一样在页眉或页脚中放置和跨越
<div class="header">
<div class="row">
<div class="col-12">
<span class="page"/>/<span class="topage"/>
</div>
</div>
当我生成发票 PDF 以供下载或打印时,我需要在同一张发票的所有页面上显示发票编号。我该怎么做?
<template id="external_layout_header_inherited" inherit_id="report.external_layout_header">
<xpath expr="//div[@class='header']" position="inside">
<div t-if="o.number">Ref.: <span t-field="o.number"/></div>
</xpath>
</template>
您可以像上面的示例一样在页眉或页脚中放置和跨越
<div class="header">
<div class="row">
<div class="col-12">
<span class="page"/>/<span class="topage"/>
</div>
</div>