diff --git a/web_easy_switch_company/__init__.py b/web_easy_switch_company/__init__.py index a14558d4..a39596d7 100644 --- a/web_easy_switch_company/__init__.py +++ b/web_easy_switch_company/__init__.py @@ -3,5 +3,5 @@ # See __openerp__.py file for Copyright and Licence Informations. ################################################################################ -import model -import controllers +from . import model +from . import controllers diff --git a/web_easy_switch_company/__openerp__.py b/web_easy_switch_company/__openerp__.py index a45b4821..c1b00a58 100644 --- a/web_easy_switch_company/__openerp__.py +++ b/web_easy_switch_company/__openerp__.py @@ -11,32 +11,28 @@ Add menu to allow user to switch to another company more easily =============================================================== -Functionnalities : ------------------- +Functionnality: +--------------- * Add a new menu in the top bar to switch to another company more easily; * Remove the old behaviour to switch company; -Documentations : ----------------- +Documentations: +--------------- * Video : http://www.youtube.com/watch?v=Cpm6dg-IEQQ -Technical informations : ------------------------- +Technical informations: +----------------------- * 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 and Licence : ------------------------ - * 2014, Groupement Régional Alimentaire de Proximité - * Licence : AGPL-3 (http://www.gnu.org/licenses/) - -Contacts : ----------- - * Sylvain LE GAL (https://twitter.com/legalsylvain); - * for any help or question about this module. +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', 'website': 'http://www.grap.coop', diff --git a/web_easy_switch_company/model/__init__.py b/web_easy_switch_company/model/__init__.py index cdcfac2d..372fe8b0 100644 --- a/web_easy_switch_company/model/__init__.py +++ b/web_easy_switch_company/model/__init__.py @@ -3,5 +3,5 @@ # See __openerp__.py file for Copyright and Licence Informations. ################################################################################ -import res_users -import res_company +from . import res_users +from . import res_company