How to add company logo in PDF report?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- 客戶關係
- e-Commerce
- 會計
- 庫存
- PoS
- Project
- MRP
此問題已被標幟
3
回覆
1686
瀏覽次數
Hi George,
Use like this
Hi,
Here is a custom module to add water mark in pdf report, it may help you
https://apps.odoo.com/apps/modules/16.0/pdf_report_with_watermark/
Hi George,
Try the code like this
<div><t t-if="o.company_id.logo">
<img t-att-src="image_data_uri(o.company_id.logo)"
style="width:50px;height:50px"/>
</t>
</div>
you can adjust the width and height by applying style
Regards