Skip to Content
Menu
Musisz się zarejestrować, aby móc wchodzić w interakcje z tą społecznością.
To pytanie dostało ostrzeżenie
1 Odpowiedz
5063 Widoki

I want to customize/change footer logo that appear on Dashboard home page in odoo v9.
it will be in /web/static/src/xml/base_common.xml. 
Here is the Footer logo class:

<div class="o_application_switcher_footer">

<img src="/web/static/src/img/odoo.png" alt="Odoo"/>

</div>

I want to Change odoo logo by my custom Module..?? How to Override it...??? i've try my level Best but failed to solved it...!!!

Thanks & Regards,

Ayaz Mansuri 

Awatar
Odrzuć
Autor Najlepsza odpowiedź

I've changed footer logo in odoo v9, Finally...!!!

Just create one xml file in /static/src/xml in your custom module & write this code..

<?xml version="1.0" encoding="UTF-8"?>

<templates id="template" xml:space="preserve">

<t t-extend="AppSwitcher" >

<t t-jquery=".o_application_switcher_footer" t-operation="replace">

<div class="o_application_switcher_footer">

<img src="/web_footer_logo/static/src/img/FP.jpg" alt="Odoo"/>

</div>

</t>

</t>

</templates>

Thanks & Regards,

Ayaz Mansuri

Awatar
Odrzuć
Powiązane posty Odpowiedzi Widoki Czynność
1
sie 22
6206
0
lip 21
8996
0
mar 15
4907
2
lip 25
1451
1
maj 25
900