如何在 Qweb 报告中包含复选框图像?

How to include a checkbox image in a Qweb Report?

有没有办法更改 qweb 报告中的复选框图像。例如,我想将标准 "V" 更改为这样的图像:

可以吗?

您可以简单地将其替换为标准 Unicode 字符 通过正在检查状态的字段

解决方案 0

将文件添加到您的模块,例如将其存储在路径 /module_name/static/src/img/image_name.png

那么现在您可以将图像添加到 Qweb 报告中了:

<img t-att-src="'/module_name/static/src/img/image_name.png'" />

注意:尊重引号的顺序和类型

解决方案 1

也许创建包含您要添加的所有元素的 ul html 列表很有用:

<style>
    .icon_list {
        list-style-image: url('/module_name/static/src/img/image_name.png');
    }
</style>

<!-- [...] -->

<ul class="icon_list" >
    <li>Coffee</li>
    <li>Tea</li>
    <li>Coca Cola</li>
</ul>

(我没试过,但应该也可以)

请使用"input type as checkbox"。它对我有用。

<input type="checkbox" checked="checked"/>I agree that glasses are selected based on my indications

odoo11 你可以为复选框

选择这个class

i class="fa fa-check 开始和结束标签这提供了比 odoo 中默认更好的复选框