odoo中打印页码

1.在addons/report/views/layouts.xml中加入自定义的页码函数

<template id="foot_layout_footer">#定义页码函数名称
    <div class="header">
    div>
    <t t-raw="0" />
    <div class="footer">
        <div class="text-center" style="border-top: 1px solid black;">
            <ul class="list-inline">
                <li>Page:li>
                <li><span class="page"/>li>#当前页码
                <li>/li>
                <li><span class="topage"/>li>#总页码
            ul>
        div>
    div>
template>

2.在函数中引用

version="1.0" encoding="utf-8">