|
|
@ -1,7 +1,8 @@ |
|
|
|
/****************************************************************************** |
|
|
|
Web Easy Switch Company module for OpenERP |
|
|
|
Copyright (C) 2014 GRAP (http://www.grap.coop)
|
|
|
|
Copyright (C) 2014-2015 GRAP (http://www.grap.coop)
|
|
|
|
@author Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
|
|
@contributor Nicolas JEUDY (https://github.com/njeudy)
|
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify |
|
|
|
it under the terms of the GNU Affero General Public License as |
|
|
@ -17,13 +18,22 @@ |
|
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
******************************************************************************/ |
|
|
|
|
|
|
|
openerp.web_easy_switch_company = function (instance) { |
|
|
|
odoo.define('web.web_easy_switch_company',function (require) { |
|
|
|
|
|
|
|
"use strict"; |
|
|
|
|
|
|
|
var core = require('web.core'); |
|
|
|
var Widget = require('web.Widget'); |
|
|
|
var UserMenu = require('web.UserMenu'); |
|
|
|
var SystrayMenu = require('web.SystrayMenu'); |
|
|
|
var web_client = require('web.web_client'); |
|
|
|
var Model = require('web.Model'); |
|
|
|
|
|
|
|
/*************************************************************************** |
|
|
|
Create an new 'SwitchCompanyWidget' widget that allow users to switch |
|
|
|
from a company to another more easily. |
|
|
|
***************************************************************************/ |
|
|
|
instance.web.SwitchCompanyWidget = instance.web.Widget.extend({ |
|
|
|
var SwitchCompanyWidget = Widget.extend({ |
|
|
|
|
|
|
|
template:'web_easy_switch_company.SwitchCompanyWidget', |
|
|
|
|
|
|
@ -84,7 +94,7 @@ openerp.web_easy_switch_company = function (instance) { |
|
|
|
* helper function to load data from the server |
|
|
|
*/ |
|
|
|
_fetch: function(model, fields, domain, ctx){ |
|
|
|
return new instance.web.Model(model).query(fields).filter(domain).context(ctx).all(); |
|
|
|
return new Model(model).query(fields).filter(domain).context(ctx).all(); |
|
|
|
}, |
|
|
|
|
|
|
|
/** |
|
|
@ -94,6 +104,7 @@ openerp.web_easy_switch_company = function (instance) { |
|
|
|
_load_data: function(){ |
|
|
|
var self = this; |
|
|
|
// Request for current users information
|
|
|
|
|
|
|
|
this._fetch('res.users',['company_id'],[['id','=',this.session.uid]]).then(function(res_users){ |
|
|
|
self.current_company_id = res_users[0].company_id[0]; |
|
|
|
self.current_company_name = res_users[0].company_id[1]; |
|
|
@ -104,7 +115,7 @@ openerp.web_easy_switch_company = function (instance) { |
|
|
|
// Note: calling res.company.name_search with
|
|
|
|
// user_preference=True in the context does
|
|
|
|
// not work either.
|
|
|
|
new instance.web.Model('res.company').call('name_search',{context:{'user_preference':'True'}}).then(function(res){ |
|
|
|
new Model('res.company').call('name_search',{context:{'user_preference':'True'}}).then(function(res){ |
|
|
|
var res_company = res; |
|
|
|
for ( var i=0 ; i < res_company.length; i++) { |
|
|
|
var logo_topbar, logo_state; |
|
|
@ -138,18 +149,6 @@ openerp.web_easy_switch_company = function (instance) { |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
/*************************************************************************** |
|
|
|
Extend 'UserMenu' Widget to insert a 'SwitchCompanyWidget' widget. |
|
|
|
***************************************************************************/ |
|
|
|
instance.web.UserMenu = instance.web.UserMenu.extend({ |
|
|
|
|
|
|
|
init: function(parent) { |
|
|
|
this._super(parent); |
|
|
|
var switch_button = new instance.web.SwitchCompanyWidget(); |
|
|
|
switch_button.appendTo(instance.webclient.$el.find('.oe_systray')); |
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}; |
|
|
|
SystrayMenu.Items.push(SwitchCompanyWidget); |
|
|
|
|
|
|
|
}); |