Browse Source
[REF] pep8;
[REF] pep8;
[REF] change copyright header in each file; [REF] typos in __openerp__.py file;pull/4/head
Sylvain LE GAL
11 years ago
9 changed files with 221 additions and 65 deletions
-
23web_easy_switch_company/__init__.py
-
48web_easy_switch_company/__openerp__.py
-
25web_easy_switch_company/controllers/__init__.py
-
24web_easy_switch_company/controllers/main.py
-
23web_easy_switch_company/model/__init__.py
-
53web_easy_switch_company/model/res_company.py
-
26web_easy_switch_company/model/res_users.py
-
22web_easy_switch_company/static/src/js/switch_company.js
-
22web_easy_switch_company/static/src/xml/switch_company.xml
@ -1,7 +1,24 @@ |
|||
# -*- encoding: utf-8 -*- |
|||
################################################################################ |
|||
# See __openerp__.py file for Copyright and Licence Informations. |
|||
################################################################################ |
|||
############################################################################## |
|||
# |
|||
# 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/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from . import model |
|||
from . import controllers |
@ -1,6 +1,23 @@ |
|||
# -*- encoding: utf-8 -*- |
|||
################################################################################ |
|||
# See __openerp__.py file for Copyright and Licence Informations. |
|||
################################################################################ |
|||
############################################################################## |
|||
# |
|||
# 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/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
import main |
|||
from . import main |
@ -1,7 +1,24 @@ |
|||
# -*- encoding: utf-8 -*- |
|||
################################################################################ |
|||
# See __openerp__.py file for Copyright and Licence Informations. |
|||
################################################################################ |
|||
############################################################################## |
|||
# |
|||
# 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/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from . import res_users |
|||
from . import res_company |
@ -1,32 +1,57 @@ |
|||
## -*- encoding: utf-8 -*- |
|||
################################################################################# |
|||
## See __openerp__.py file for Copyright and Licence Informations. |
|||
################################################################################# |
|||
# -*- 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/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from openerp.osv.orm import Model |
|||
from openerp.osv import fields |
|||
from openerp.osv.orm import Model |
|||
from openerp.tools import image_resize_image |
|||
|
|||
|
|||
class res_company(Model): |
|||
_inherit = 'res.company' |
|||
|
|||
### Custom Section |
|||
def _switch_company_get_companies_from_partner(self, cr, uid, ids, context=None): |
|||
return self.pool['res.company'].search(cr, uid, [('partner_id', 'in', ids)], context=context) |
|||
# Custom Section |
|||
def _switch_company_get_companies_from_partner( |
|||
self, cr, uid, ids, context=None): |
|||
return self.pool['res.company'].search( |
|||
cr, uid, [('partner_id', 'in', ids)], context=context) |
|||
|
|||
### Fields function Section |
|||
# Fields function Section |
|||
def _get_logo_topbar(self, cr, uid, ids, _field_name, _args, context=None): |
|||
result = dict.fromkeys(ids, False) |
|||
for record in self.browse(cr, uid, ids, context=context): |
|||
size = (48, 48) |
|||
result[record.id] = image_resize_image(record.partner_id.image, size) |
|||
result[record.id] = image_resize_image( |
|||
record.partner_id.image, size) |
|||
return result |
|||
|
|||
### Columns Section |
|||
# Columns Section |
|||
_columns = { |
|||
'logo_topbar': fields.function(_get_logo_topbar, string="Logo displayed in the switch company menu", |
|||
'logo_topbar': fields.function( |
|||
_get_logo_topbar, |
|||
string="Logo displayed in the switch company menu", |
|||
type="binary", store={ |
|||
'res.company': (lambda s, c, u, i, x: i, ['partner_id'], 10), |
|||
'res.partner': (_switch_company_get_companies_from_partner, ['image'], 10), |
|||
}), |
|||
'res.partner': (_switch_company_get_companies_from_partner, |
|||
['image'], 10), |
|||
} |
|||
), |
|||
} |
@ -1,13 +1,31 @@ |
|||
# -*- encoding: utf-8 -*- |
|||
################################################################################ |
|||
# See __openerp__.py file for Copyright and Licence Informations. |
|||
################################################################################ |
|||
############################################################################## |
|||
# |
|||
# 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/>. |
|||
# |
|||
############################################################################## |
|||
|
|||
from openerp.osv.orm import Model |
|||
|
|||
|
|||
class res_users(Model): |
|||
_inherit = 'res.users' |
|||
|
|||
### Custom Function Section |
|||
# Custom Function Section |
|||
def change_current_company(self, cr, uid, company_id, context=None): |
|||
return self.write(cr, uid, uid, {'company_id': company_id}) |
Write
Preview
Loading…
Cancel
Save
Reference in new issue