This question has been flagged

is is an updated thread catering to this question for Odoo 8.0. The original 7.0 thread was getting a little chaotic so I decided to create a new thread for the question.

If you would like to add an image to the tree view on the sales order line or quotation line, please install the following module (instructions on Github in README):

https://github.com/OdooCommunityWidgets/web_tree_image_order_line 

I've simply ported Stefan's original work for 7.0 to make it 8.0-compatible. He has also built another module to support the image in tree view here:

https://github.com/OCA/web/tree/8.0/web_tree_image

The OdooCommunityWidgets module is dependant on the OCA module to function correctly. Please make sure you install both.


Here's a link to the original question:

 
https://www.odoo.com/forum/help-1/question/odoo-7-how-can-i-add-images-in-sale-oder-line-or-in-treeview-generally-483

here's the question content:.

"By 

Stefan Reisich 

 on 2/8/13, 9:39 PM

how can I add small images in sale.order.line in OpenERP 7 web client? So that each product in orders or quotations has as small image.

Thank you very much."

Avatar
Discard

You can get some help from here: https://www.odoo.com/forum/how-to/developers-13/how-to-show-thumbnail-image-in-list-view-19907

Best Answer

Hi Shiram , have you find the solution? 


Avatar
Discard
Best Answer

Same result as shriram sampat. Did you find the way?

Avatar
Discard
Best Answer

I  installed both the apps web_tree_image and product_image_list_view and I am still getting only download links instead of images in tree view. In sale order line, I am able to see an image. But when I edit the product.template tree view (warehouse -> products) to add "<field name="image_small" widget='image'/>" I am seeing only download link instead of the images. Is this the correct way to include image in list view ?

Edit : After some debugging, I found out that row_data[this.id].value returns the size string ("xxxx bytes"/"xxxx kB",..) instead of the binary value !. This results in 

<img src="data:image/png;base64,127 kB" width="64px" height="64px">

Notice the 127 kB . Here the value of field should be printed out.

May be someone can tell me why size is being returned instead of value.

I am using bitnami odoo instance 8.0-8 which uses odoo nightly version 8.0-20150423

Avatar
Discard