1

fields.function を介して wqeb レポートに画像を表示しようとしています。フォーム内ではすべてうまくいきますが、qweb レポートで試してみるとこのエラーが発生しますが、それでもこのエラーの意味がわかりません。事前に感謝します。

  File "/opt/ikom/openerp/addons/base/ir/ir_qweb.py", line 791, in value_to_html
raise ValueError("Non-image binary fields can not be converted to HTML")

ValueError: 画像以外のバイナリ フィールドは HTML に変換できません

この方法で取得しようとしています

   'chart': fields.function(_get_image, string="Grafica de pallets", type="binary"),


    def _get_image(self, cr, uid, ids, name, args, context=None):
       pdb.set_trace()
       res = dict.fromkeys(ids)
       for record_browse in self.browse(cr, uid, ids):
          partner = self.pool.get('res.partner').browse(cr,uid,6,context=None).image
          res[record_browse.id] = base64.encodestring(chart_encoded)
       return res

<span itemprop="image" t-field="o.chart" t-field-options='{"widget": "image", "alt-field": "name"}'/>
4

1 に答える 1