mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
[IMP] web_switch_company_warning
Move signature() out of init()
This commit is contained in:
@@ -25,7 +25,7 @@ openerp.web_switch_company_warning = function (instance) {
|
||||
if (msg.data.type !== 'newCtx')
|
||||
return;
|
||||
|
||||
if(msg.data.newCtx != signature(self.session)) {
|
||||
if(msg.data.newCtx != self.signature(self.session)) {
|
||||
self.$el.show();
|
||||
} else {
|
||||
self.$el.hide();
|
||||
@@ -33,11 +33,10 @@ openerp.web_switch_company_warning = function (instance) {
|
||||
});
|
||||
|
||||
w.port.start();
|
||||
w.port.postMessage(signature(this.session));
|
||||
|
||||
function signature(session) {
|
||||
w.port.postMessage(self.signature(this.session));
|
||||
},
|
||||
signature: function (session) {
|
||||
return [session.db, session.uid, session.company_id].join();
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
|
||||
Reference in New Issue
Block a user