Skip to Content
Meniu
Trebuie să fiți înregistrat pentru a interacționa cu comunitatea.
Această întrebare a fost marcată
1 Răspunde
3631 Vizualizări

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.

Imagine profil
Abandonează
Cel mai bun răspuns

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

Imagine profil
Abandonează

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>

Autor

Thanks man!

Related Posts Răspunsuri Vizualizări Activitate
1
feb. 24
2794
1
apr. 23
2953
1
dec. 22
2449
3
apr. 24
8011
0
mar. 24
1523