如何在odoo 12中自定义报表或向报表添加通用的页眉和页脚?我发现了四种类型的报表布局(背景,盒装,干净和标准)。但是我无法添加页眉和页脚。是否可以为odoo 12版中的所有报告添加通用的页眉和页脚?
答案 0 :(得分:1)
您可以继承默认布局并根据需要进行修改
<template id="web_external_layout_iherited"
inherit_id="web.external_layout_standard" customize_show="True"
name="Automatic Header">
<xpath expr="//div[@class='header']" position="replace">
</xpath>
</template>