mirror of
https://github.com/OCA/web.git
synced 2025-02-22 13:21:25 +02:00
In order to get visibility on https://www.odoo.com/apps the OCA board has decided to add the OCA as author of all the addons maintained as part of the association.
72 lines
2.4 KiB
Python
72 lines
2.4 KiB
Python
# -*- encoding: utf-8 -*-
|
|
##############################################################################
|
|
#
|
|
# Web Easy Switch Company module for OpenERP
|
|
# Copyright (C) 2014 GRAP (http://www.grap.coop)
|
|
# @author Sylvain LE GAL (https://twitter.com/legalsylvain)
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU Affero General Public License as
|
|
# published by the Free Software Foundation, either version 3 of the
|
|
# License, or (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU Affero General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU Affero General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
#
|
|
##############################################################################
|
|
|
|
{
|
|
'name': 'Multicompany - Easy Switch Company',
|
|
'version': '1.0',
|
|
'category': 'web',
|
|
'description': """
|
|
Add menu to allow user to switch to another company more easily
|
|
===============================================================
|
|
|
|
Functionality:
|
|
--------------
|
|
* Add a new menu in the top bar to switch to another company more easily;
|
|
* Remove the old behaviour to switch company;
|
|
|
|
Documentations:
|
|
---------------
|
|
* Video : http://www.youtube.com/watch?v=Cpm6dg-IEQQ
|
|
|
|
Technical information:
|
|
----------------------
|
|
* Create a field function 'logo_topbar' in res_company to have a good"""
|
|
"""resized logo;
|
|
|
|
Limits:
|
|
-------
|
|
* It would be interesting to show the structure of the companies;
|
|
|
|
Copyright, Author and Licence:
|
|
------------------------------
|
|
* Copyright: 2014, Groupement Régional Alimentaire de Proximité;
|
|
* Author: Sylvain LE GAL (https://twitter.com/legalsylvain);
|
|
* Licence: AGPL-3 (http://www.gnu.org/licenses/)""",
|
|
'author': "GRAP,Odoo Community Association (OCA)",
|
|
'website': 'http://www.grap.coop',
|
|
'license': 'AGPL-3',
|
|
'depends': [
|
|
'web',
|
|
],
|
|
'data': [
|
|
'view/res_users_view.xml',
|
|
],
|
|
'js': [
|
|
'static/src/js/switch_company.js',
|
|
],
|
|
'qweb': [
|
|
'static/src/xml/switch_company.xml',
|
|
],
|
|
'installable': True,
|
|
'auto_install': False,
|
|
}
|