I am just checking to change the usermenu drop down on the right corner, but could not changed. I followed https://www.odoo.com/forum/help-1/question/how-to-customize-usermenu-on-upper-right-corner-107470, but no success at all.
Version: odoo11
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
I am just checking to change the usermenu drop down on the right corner, but could not changed. I followed https://www.odoo.com/forum/help-1/question/how-to-customize-usermenu-on-upper-right-corner-107470, but no success at all.
Version: odoo11
I think you can use these steps:
module_folder/static/src/xml/template.xml
'qweb': ['static/src/xml/template.xml'],
<?xml version="1.0" encoding="UTF-8"?> <templates id="my_menus_template_id" xml:space="preserve">
<t t-name="UserMenu.Actions">
<li class="logout"><a href="#" data-menu="logout">Log out</a></li>
</t>
</templates>
<li><a href="#" data-menu="documentation">Documentation</a></li>
<li><a href="#" data-menu="support">Support</a></li>
<li class="divider"/>
<li><a href="#" data-menu="settings">Preferences</a></li>
<li><a href="#" data-menu="account">My Odoo.com account</a></li>
<li><a href="#" data-menu="logout">Log out</a></li>
<?xml version="1.0" encoding="UTF-8"?> <templates id="my_menus_template_id" xml:space="preserve">
<t t-name="UserMenu.Actions">
<li class="logout"><a href="#" data-menu="logout">Log out</a></li>
<li><a href="#" data-menu="newmenu">New Menu</a></li>
</t>
</templates>
odoo.define('module_folder.ComplementMenu', function(require) {
"use strict";
var UserMenu = require('web.UserMenu');
var ComplementMenu = UserMenu.include({
_onMenuNewmenu: function () {
//...Here your code
}
});
return ComplementMenu;
});
<?xml version="1.0" encoding="UTF-8"?>
<odoo>
<template id="assets_backend" name="tools assets" inherit_id="web.assets_backend">
<xpath expr=".">
<script type="application/javascript" src="/module_folder/static/src/js/menu.js"/>
</xpath>
</template>
</odoo>
data': [
'views/menu_view.xml',
],
สร้างบัญชีวันนี้เพื่อเพลิดเพลินไปกับฟีเจอร์พิเศษและมีส่วนร่วมกับคอมมูนิตี้ที่ยอดเยี่ยมของเรา!
ลงชื่อ| Related Posts | ตอบกลับ | มุมมอง | กิจกรรม | |
|---|---|---|---|---|
|
How to add simple birthday field?
แก้ไขแล้ว
|
2
ส.ค. 23
|
3991 | ||
|
1
ก.ค. 23
|
3103 | |||
|
1
ก.ค. 23
|
8180 | |||
|
1
ธ.ค. 15
|
4425 | |||
|
0
มี.ค. 15
|
3981 |
1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.