Browse Source
Migrate switch_company_warning to 10
Migrate switch_company_warning to 10
Lint Switch to old name [UPD] Update web_switch_company_warning.pot [ADD] icon.pngpull/1289/head
hparfr
7 years ago
committed by
Adrià Gil Sorribes
6 changed files with 68 additions and 39 deletions
-
11web_switch_company_warning/__manifest__.py
-
36web_switch_company_warning/i18n/web_switch_company_warning.pot
-
BINweb_switch_company_warning/static/description/icon.png
-
46web_switch_company_warning/static/src/js/switch_company_warning.js
-
12web_switch_company_warning/static/src/js/switch_company_warning_worker.js
@ -0,0 +1,36 @@ |
|||||
|
# Translation of Odoo Server. |
||||
|
# This file contains the translation of the following modules: |
||||
|
# * web_switch_company_warning |
||||
|
# |
||||
|
msgid "" |
||||
|
msgstr "" |
||||
|
"Project-Id-Version: Odoo Server 10.0\n" |
||||
|
"Report-Msgid-Bugs-To: \n" |
||||
|
"Last-Translator: <>\n" |
||||
|
"Language-Team: \n" |
||||
|
"MIME-Version: 1.0\n" |
||||
|
"Content-Type: text/plain; charset=UTF-8\n" |
||||
|
"Content-Transfer-Encoding: \n" |
||||
|
"Plural-Forms: \n" |
||||
|
|
||||
|
#. module: web_switch_company_warning |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:6 |
||||
|
#, python-format |
||||
|
msgid "Reload" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: web_switch_company_warning |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:5 |
||||
|
#, python-format |
||||
|
msgid "You switched to a different company with another tab or window" |
||||
|
msgstr "" |
||||
|
|
||||
|
#. module: web_switch_company_warning |
||||
|
#. openerp-web |
||||
|
#: code:addons/web_switch_company_warning/static/src/xml/switch_company_warning.xml:6 |
||||
|
#, python-format |
||||
|
msgid "to refresh your session" |
||||
|
msgstr "" |
||||
|
|
After Width: 128 | Height: 128 | Size: 9.2 KiB |
@ -1,52 +1,46 @@ |
|||||
'use strict'; |
'use strict'; |
||||
|
|
||||
openerp.web_switch_company_warning = function (instance) { |
|
||||
|
|
||||
|
odoo.define('web_switch_company_warning.widget', function (require) { |
||||
|
var Widget = require('web.Widget'); |
||||
|
var UserMenu = require('web.UserMenu'); |
||||
//Show a big banner in the top of the page if the company has been
|
//Show a big banner in the top of the page if the company has been
|
||||
//changed in another tab or window (in the same browser)
|
//changed in another tab or window (in the same browser)
|
||||
|
|
||||
if (!window.SharedWorker) |
|
||||
return; //not supported
|
|
||||
|
|
||||
instance.web.SwitchCompanyWorker = null; //keep a global reference
|
|
||||
|
|
||||
instance.web.SwitchCompanyWarningWidget = instance.web.Widget.extend({ |
|
||||
|
|
||||
|
if (!window.SharedWorker) { |
||||
|
//not supported
|
||||
|
return; |
||||
|
} |
||||
|
var SwitchCompanyWarningWidget = Widget.extend({ |
||||
template:'web_switch_company_warning.warningWidget', |
template:'web_switch_company_warning.warningWidget', |
||||
init: function() { |
init: function() { |
||||
this._super(); |
this._super(); |
||||
|
|
||||
var self = this; |
var self = this; |
||||
|
|
||||
var w = new SharedWorker('/web_switch_company_warning/static/src/js/switch_company_warning_worker.js'); |
|
||||
instance.web.SwitchCompanyWorker = w; |
|
||||
|
var w = new SharedWorker('/web_switch_company_warning/static/src/js/switch_company_warning_worker.js'); |
||||
|
|
||||
w.port.addEventListener('message', function (msg) { |
w.port.addEventListener('message', function (msg) { |
||||
if (msg.data.type !== 'newCtx') |
|
||||
return; |
|
||||
|
|
||||
if(msg.data.newCtx != self.session.company_id) { |
|
||||
self.$el.show(); |
|
||||
} else { |
|
||||
|
if (msg.data.type !== 'newCtx') { |
||||
|
return; |
||||
|
} |
||||
|
if(msg.data.newCtx === self.session.company_id) { |
||||
self.$el.hide(); |
self.$el.hide(); |
||||
|
} else { |
||||
|
self.$el.show(); |
||||
} |
} |
||||
}); |
}); |
||||
|
|
||||
w.port.start(); |
w.port.start(); |
||||
w.port.postMessage(this.session.company_id); |
w.port.postMessage(this.session.company_id); |
||||
} |
} |
||||
}); |
}); |
||||
|
|
||||
instance.web.UserMenu = instance.web.UserMenu.extend({ |
|
||||
|
|
||||
|
UserMenu.include({ |
||||
init: function(parent) { |
init: function(parent) { |
||||
this._super(parent); |
this._super(parent); |
||||
|
|
||||
var switchCompanyWarning = new instance.web.SwitchCompanyWarningWidget(); |
|
||||
switchCompanyWarning.insertAfter(instance.webclient.$el.find('#oe_main_menu_navbar')); |
|
||||
|
var switchCompanyWarning = new SwitchCompanyWarningWidget(); |
||||
|
switchCompanyWarning.appendTo('#oe_main_menu_navbar'); |
||||
} |
} |
||||
|
|
||||
}); |
}); |
||||
|
|
||||
}; |
|
||||
|
return SwitchCompanyWarningWidget; |
||||
|
}); |
||||
|
|
Write
Preview
Loading…
Cancel
Save
Reference in new issue