Skip to Content
Menu
This question has been flagged
1 Reply
2720 Views

Hello, I'm sorry for the inconvenience caused.


I have a binary type field, where what I am looking for is to replace the logo that the company has, with the image that is uploaded in the field... I am trying to work it in the reports from the sales module, but it seems that the header tag was removed in the sales reports in Odoo 16 (why I can't find it)


How can I replace the logo that comes by default, so that it uploads in the binary field?


Sorry for the inconvenience, odoo 16 community, thanks.

Avatar
Discard
Best Answer

Hello Learning_Odoo,

Please find below code it may help you to resolve this issue.

I hope this can help you.

Thanks & Regards,
Email:   odoo@aktivsoftware.com 

Skype: kalpeshmaheshwari

Avatar
Discard

Please find code here :-

First, inherit base layout in custom layout and add xpath fro header class and replace with custom header.

<odoo>
<template id="website.layout_inherit" inherit_id="website.layout" name="Custom Website Layout">
<xpath expr="//div[@class='o_logo']" position="replace">
<div class="o_logo">
<a href="/">
<img src="/your_module/static/src/img/new_logo.png" alt="Your Logo" class="img-fluid"/>
</a>
</div>
</xpath>
</template>
</odoo>

Author

Thanks man!

Related Posts Replies Views Activity
1
Feb 24
1845
1
Apr 23
2314
1
Dec 22
1782
3
Apr 24
6591
0
Mar 24
734