콘텐츠로 건너뛰기
메뉴
커뮤니티에 참여하려면 회원 가입을 하시기 바랍니다.
신고된 질문입니다
1 회신
2774 화면

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
1925
1
4월 23
2359
1
12월 22
1814
3
4월 24
6753
0
3월 24
766