Skip to Content
Menu
This question has been flagged
3 Replies
1587 Views

How to add company logo in PDF report?

Avatar
Discard
Best Answer

Hi George,

Use like this


Avatar
Discard
Best Answer

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/


Avatar
Discard
Best Answer

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

Avatar
Discard