[CLEAN] google_map : rem useless crap, useless step using a wizard

bzr revid: tfr@openerp.com-20111019131250-dn8jfswmqoif664r
This commit is contained in:
tfr@openerp.com 2011-10-19 15:12:50 +02:00
commit e3839a5802
7 changed files with 10 additions and 137 deletions

View File

@ -19,7 +19,6 @@
#
##############################################################################
import google_map
import wizard
import google_map_launch
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -34,7 +34,9 @@ Using this you can directly open Google Map from the URL widget.""",
'images': ['images/google_map.jpeg'],
'depends': ['base'],
'init_xml': [],
'update_xml': ['google_map_wizard.xml', 'google_map_view.xml'],
'update_xml': [
'google_map_view.xml',
],
'demo_xml': [],
'installable': True,
'active': False,

View File

@ -1,32 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# 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 osv import fields,osv,orm
class res_partner_address(osv.osv):
_description ='Partner Contact'
_name = 'res.partner.address'
_inherit = 'res.partner.address'
_columns = {
}
res_partner_address()
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -12,8 +12,8 @@
<label string="Street2 : " align="1.0"/>
<group colspan="1" col="2">
<field name="street2" nolabel="1"/>
<button name="%(wizard_google_map)d"
string="Map" type="action" icon="gtk-zoom-in"/>
<button name="open_map"
string="Map" type="object" icon="gtk-zoom-in"/>
</group>
</field>
</field>
@ -29,7 +29,8 @@
<label string="Street2 : " align="1.0"/>
<group colspan="1" col="2">
<field name="street2" nolabel="1"/>
<button name="%(wizard_google_map)d" string="Map" type="action" icon="gtk-zoom-in"/>
<button name="open_map"
string="Map" type="object" icon="gtk-zoom-in"/>
</group>
</field>
</field>
@ -46,8 +47,8 @@
<label string="Street2 : " align="1.0"/>
<group colspan="1" col="2">
<field name="street2" nolabel="1"/>
<button name="%(wizard_google_map)d"
string="Map" type="action" icon="gtk-zoom-in"/>
<button name="open_map"
string="Map" type="object" icon="gtk-zoom-in"/>
</group>
</field>
</field>

View File

@ -1,12 +0,0 @@
<?xml version="1.0" ?>
<openerp>
<data>
<wizard
string="Launch Google Map"
model="res.partner.address"
name="google_map_launch"
id="wizard_google_map"
keyword="client_action_multi"/>
</data>
</openerp>

View File

@ -1,24 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# 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 google_map_launch
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4:

View File

@ -1,61 +0,0 @@
# -*- coding: utf-8 -*-
##############################################################################
#
# OpenERP, Open Source Management Solution
# Copyright (C) 2004-2010 Tiny SPRL (<http://tiny.be>).
#
# 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 wizard
from osv import osv
import pooler
from osv import fields
import time
def _launch_wizard(self, cr, uid, data, context=None):
address_obj= pooler.get_pool(cr.dbname).get('res.partner.address')
m= address_obj.browse(cr, uid, data['id'], context=context)
url=''
url="http://maps.google.com/maps?oi=map&q="
if m.street:
url+=m.street.replace(' ','+')
if m.street2:
url+='+'+m.street2.replace(' ','+')
if m.city:
url+='+'+m.city.replace(' ','+')
if m.state_id:
url+='+'+m.state_id.name.replace(' ','+')
if m.country_id:
url+='+'+m.country_id.name.replace(' ','+')
if m.zip:
url+='+'+m.zip.replace(' ','+')
return {
'type': 'ir.actions.act_url',
'url':url,
'target': 'new'
}
class launch_map(wizard.interface):
states= {'init' : {'actions': [],
'result':{'type':'action',
'action': _launch_wizard,
'state':'end'}
}
}
launch_map('google_map_launch')
# vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: