In OpenERP 7 multi-company setting user login based on company top left logo dynamic changes default functionality is working great. But after the Login need to refresh the page then only Logo changes will be display. How to auto refresh top left page in the code automatically after login the user?..
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- Księgowość
- Zapasy
- PoS
- Project
- MRP
To pytanie dostało ostrzeżenie
Yes, i find the solution After Login code reload method is called.
web\static\src\js\chrome.js
do_login: function (db, login, password) {
var self = this;
self.hide_error();
self.$(".oe_login_pane").fadeOut("slow");
return this.session.session_authenticate(db, login, password).then(function() {
self.remember_last_used_database(db);
if (self.has_local_storage && self.remember_credentials) {
localStorage.setItem(db + '|last_login', login);
}
self.trigger('login_successful');
/*The below Reload code is added to reload the page so user login automatic Left top logo change.*/
instance.web.Reload(1,1);
/*END*/
},
Podoba Ci się ta dyskusja? Dołącz do niej!
Stwórz konto dzisiaj, aby cieszyć się ekskluzywnymi funkcjami i wchodzić w interakcje z naszą wspaniałą społecznością!
Zarejestruj sięPowiązane posty | Odpowiedzi | Widoki | Czynność | |
---|---|---|---|---|
|
2
lip 25
|
1362 | ||
|
1
maj 25
|
845 | ||
|
2
lip 25
|
939 | ||
|
2
maj 25
|
1466 | ||
|
1
lip 24
|
3143 |
I am also facing same issue. But, this works fine for "Admin" user. Did you find solution?