跳至内容
菜单
此问题已终结
1 回复
2736 查看

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.

形象
丢弃
最佳答案

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

形象
丢弃

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>

编写者

Thanks man!

相关帖文 回复 查看 活动
1
2月 24
1862
1
4月 23
2329
1
12月 22
1795
3
4月 24
6658
0
3月 24
745