如何使报告的页脚固定在底部
how to make footer of reports fixed in the bottom
我创建了一个自定义模块。我在报告中的页脚未固定在页脚中我尝试了几种解决方案但没有任何效果,如果我的销售订单包含多种产品,它要么上升要么进入下一页。如果我的销售订单由两页组成,我的页脚显示在第二页只是因为它正在使用 odoo 9 中断 down.I。有什么帮助吗?
<div class="footer">
<div class="text-center" style="border-top: 1px solid black;">
<small>
<ul t-if="not company.custom_footer" class="list-inline">
<li t-if="company.phone">Phone:
<span t-field="company.phone"/>
</li>
<li t-if="company.fax and company.phone">&bull;</li>
<li t-if="company.fax">Fax:
<span t-field="company.fax"/>
</li>
<li t-if="company.email and company.fax or company.email and company.phone">
&bull;
</li>
<li t-if="company.vat">TVA:
<span t-field="company.vat"/>
</li>
<li t-if="company.company_registry">&bull;</li>
<li t-if="company.company_registry">RC:
<span t-field="company.company_registry"/>
</li>
</ul>
</small>
<small>
<ul class="list-inline">
<t t-set="nbr_page" t-value="1"/>
<li>Page:</li>
<t t-set="compteur" t-value="nbr_page+1"/>
<li>
<span class="page"/>
<t t-esc="nbr_page"/>
</li>
/
<t t-esc="nbr_page"/>
<li>
<span class="topage"/>
</li>
</ul>
</small>
<t t-set="nbr_page" t-value="1"/>
<t t-set="compteur" t-value="nbr_page+1"/>
<!--<t t-esc="nbr_page"/>-->
<!--<t t-if="company.custom_footer">-->
<!--<span t-raw="company.rml_footer"/>-->
<!--</t>-->
</div>
我通过在 div class="footer" style=[=17 中添加标签 style 找到了解决方案=]
我创建了一个自定义模块。我在报告中的页脚未固定在页脚中我尝试了几种解决方案但没有任何效果,如果我的销售订单包含多种产品,它要么上升要么进入下一页。如果我的销售订单由两页组成,我的页脚显示在第二页只是因为它正在使用 odoo 9 中断 down.I。有什么帮助吗?
<div class="footer">
<div class="text-center" style="border-top: 1px solid black;">
<small>
<ul t-if="not company.custom_footer" class="list-inline">
<li t-if="company.phone">Phone:
<span t-field="company.phone"/>
</li>
<li t-if="company.fax and company.phone">&bull;</li>
<li t-if="company.fax">Fax:
<span t-field="company.fax"/>
</li>
<li t-if="company.email and company.fax or company.email and company.phone">
&bull;
</li>
<li t-if="company.vat">TVA:
<span t-field="company.vat"/>
</li>
<li t-if="company.company_registry">&bull;</li>
<li t-if="company.company_registry">RC:
<span t-field="company.company_registry"/>
</li>
</ul>
</small>
<small>
<ul class="list-inline">
<t t-set="nbr_page" t-value="1"/>
<li>Page:</li>
<t t-set="compteur" t-value="nbr_page+1"/>
<li>
<span class="page"/>
<t t-esc="nbr_page"/>
</li>
/
<t t-esc="nbr_page"/>
<li>
<span class="topage"/>
</li>
</ul>
</small>
<t t-set="nbr_page" t-value="1"/>
<t t-set="compteur" t-value="nbr_page+1"/>
<!--<t t-esc="nbr_page"/>-->
<!--<t t-if="company.custom_footer">-->
<!--<span t-raw="company.rml_footer"/>-->
<!--</t>-->
</div>
我通过在 div class="footer" style=[=17 中添加标签 style 找到了解决方案=]