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',
],
Create an account today to enjoy exclusive features and engage with our awesome community!
Registrar-se| Related Posts | Respostes | Vistes | Activitat | |
|---|---|---|---|---|
|
|
2
d’ag. 23
|
3822 | ||
|
|
1
de jul. 23
|
3027 | ||
|
|
1
de jul. 23
|
8063 | ||
|
|
1
de des. 15
|
4316 | ||
|
|
0
de març 15
|
3893 |