If i have a module with an image, how to embed an image from my field on module to webkit pdf.
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客户关系管理
- e-Commerce
- 会计
- 库存
- PoS
- Project
- MRP
此问题已终结
2
回复
7401
查看
I found it:
On your mako template:
${helper.embed_image('png', object.image,50,50) | n}
Where
helper.embed_image(image_type, object_image,width,height)
We use in sale_order:
<img src="data:image/png;base64,${line.product_id.image}" />
But than you must sure that all product images are png.
In some case, if you want to add fixed image, I will use base64 module to encode, decode this image and insert it into report
相关帖文 | 回复 | 查看 | 活动 | |
---|---|---|---|---|
|
0
3月 15
|
3423 | ||
|
2
11月 22
|
3887 | ||
|
3
4月 25
|
11326 | ||
|
1
2月 16
|
7799 | ||
|
1
1月 16
|
4203 |