Odoo 12 qweb 报告不渲染图像

Odoo 12 qweb report not rendering image

我的一份 V10 qweb 报告中有以下代码。

 <img t-if="company.logo_footer" t-att-src="'data:image/png;base64,%s' % company.logo_footer" style="max-height: 30px;"/>

它在V10中渲染图像正确,但在V12中它不显示图像,我检查了wkhtmltopdf并且它安装正确。

我解决了,在odoo 12中我们需要将二进制字段传递给一个函数。

<img t-if="company.logo_footer" t-att-src="image_data_uri(company.logo_footer)"  style="max-height: 30px;"/>

这解决了我的问题!!!