Odoo 10 - 计算图像场

时间:2018-01-17 22:29:26

标签: odoo-10 odoo

我想将图像字段添加到自定义模型中,其中图像是从给定的产品ID中动态检索的

product_image = fields.Binary("Product Image", compute='_compute_product_image')

def _compute_product_image(self):
    print 'debug -compute-product-image'
    image = False
    if self.product_id:
        product_image = self.env['product.template'].search([('id', '=', self.product_id.id)]).image
        print product_image
        print type(product_image)
    print 'debug -compute-product-image end'
    return product_image

后来的观点:

<field name="product_image" widget="image" class="oe_avatar" readonly="True"/>

但是,尽管测试的product_id有图像,但没有显示任何内容。

这是调试输出:

$ odoo -c /etc/odoo/odoo.conf -d testdatabase
debug -compute-product-image
64.78 Kb
<type 'str'>
debug -compute-product-image end

1 个答案:

答案 0 :(得分:0)

将图像类型str更改为base64

convertToBase64 (binaryString) {

            this.base64textString= btoa(binaryString);
            console.log(btoa(binaryString));
    }