在Odoo 10中将CSS文件添加到qweb报表中的方法如下:
<template id="report_template_id" inherit_id="report.external_layout_header">
<!-- 在此处添加报表的HTML布局 -->
</template>
请注意,"inherit_id"属性的值应该是要继承的报表模板的ID。
<xpath expr="//head" position="inside">
<link rel="stylesheet" type="text/css" href="/your_module_name/static/css/custom.css" />
</xpath>
确保将"your_module_name"替换为你的模块名称。
__manifest__.py
文件中添加对报表文件的引用。例如:'data': [
'views/report.xml',
],
现在,在Odoo 10中,你已经成功将CSS文件添加到qweb报表中了。请注意,这里提供的是一种基本的方法,你可以根据具体需求进行更多的定制和样式调整。
领取专属 10元无门槛券
手把手带您无忧上云