我正在odoo 11中创建一个报告,我想要打印可重复的页眉和页脚。下面是我的代码来做同样的事情。
标题代码
<div class="header">
<img height="160" src='/module_name/static/src/img/'/>
</div>
页脚代码
<div class="footer">
<img height="160" src='/module_name/static/src/img/'/>
</div
我正在使用wkhtmltopdf版本 - 0.12.4。在此版本中,自定义页脚正常工作但标题不起作用。
进一步研究
任何帮助都非常感谢带来自定义页眉和页脚。提前谢谢。
答案 0 :(得分:0)
class Service {
constructor(x) {
this.x = x;
}
}
function getMyService(extra) {
return class extends Service {
getExtra() {
return extra; // extra value like WrappedComponent or axios
}
getX() {
return this.x;
}
};
}
// result
const MyService = getMyService('some extra value'); // Returns the class
const myServiceInstance = new MyService(1); // This is what React does to instantiate your component
console.log(myServiceInstance.getX()); // -> 1
console.log(myServiceInstance.getExtra()); // -> 'some extra value'