|
|
@ -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,18 +18,27 @@ |
|
|
|
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 |
|
|
|
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', |
|
|
|
|
|
|
|
/*********************************************************************** |
|
|
|
Overload section |
|
|
|
Overload section |
|
|
|
***********************************************************************/ |
|
|
|
|
|
|
|
/** |
|
|
@ -77,14 +87,14 @@ openerp.web_easy_switch_company = function (instance) { |
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************************** |
|
|
|
Custom section |
|
|
|
Custom section |
|
|
|
***********************************************************************/ |
|
|
|
|
|
|
|
/** |
|
|
|
* 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,17 +104,18 @@ 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]; |
|
|
|
// Request for other companies
|
|
|
|
// We have to go through fields_view_get to emulate the
|
|
|
|
// exact (exotic) behavior of the user preferences form in
|
|
|
|
// exact (exotic) behavior of the user preferences form in
|
|
|
|
// fetching the allowed companies wrt record rules.
|
|
|
|
// Note: calling res.company.name_search with
|
|
|
|
// user_preference=True in the context does
|
|
|
|
// 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; |
|
|
@ -113,8 +124,8 @@ openerp.web_easy_switch_company = function (instance) { |
|
|
|
// probably remove the logos from the menu :(
|
|
|
|
logo_topbar = self.session.url( |
|
|
|
'/web/binary/image', { |
|
|
|
model:'res.company', |
|
|
|
field: 'logo_topbar', |
|
|
|
model:'res.company', |
|
|
|
field: 'logo_topbar', |
|
|
|
id: res_company[i][0] |
|
|
|
}); |
|
|
|
if (res_company[i][0] == self.current_company_id){ |
|
|
@ -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); |
|
|
|
|
|
|
|
}); |