You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

65 lines
2.2 KiB

# -*- coding: utf-8 -*-
##############################################################################
#
# Partner Address on Map module for OpenERP
# Copyright (C) 2015 Akretion (http://www.akretion.com/)
# @author: Alexis de Lattre <alexis.delattre@akretion.com>
#
# 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 import models, fields, api, _
from openerp.exceptions import Warning
class MapUrl(models.Model):
_name = 'map.url'
_description = 'Map System'
name = fields.Char(string='Map Provider', required=True)
url = fields.Char(string='URL', required=True)
class ResUsers(models.Model):
_inherit = 'res.users'
# begin with context_ to allow user to change it by himself
context_map_url_id = fields.Many2one(
'map.url', string='Map Provider')
# TODO: Add default
class ResPartner(models.Model):
_inherit = 'res.partner'
@api.multi
def open_map(self):
if not self.env.user.context_map_url_id:
raise Warning(_(
'Missing Map Provider: you should set it in your Preferences.'))
url = self.env.user.context_map_url_id.url
if self.street:
url += self.street
if self.city:
url += ' ' + self.city
if self.state_id:
url += ' ' + self.state_id.name
if self.country_id:
url += ' ' + self.country_id.name
return {
'type': 'ir.actions.act_url',
'url': url,
'targer': 'new',
}