我的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并正确安装了它。
答案 0 :(得分:0)
我解决了这个问题,在odoo 12中,我们需要将二进制字段传递给函数。
protected void MainGrid_EditCommand(object source, DataGridCommandEventArgs e)
{
MainGrid.EditItemIndex = e.Item.ItemIndex;
BindData();
}
这解决了我的问题!!!