Initial import from Docker volume
This commit is contained in:
24
modules/google_maps/address.py
Executable file
24
modules/google_maps/address.py
Executable file
@@ -0,0 +1,24 @@
|
||||
# This file is part of Tryton. The COPYRIGHT file at the top level of
|
||||
# this repository contains the full copyright notices and license terms.
|
||||
import urllib.parse
|
||||
|
||||
from trytond.model import fields
|
||||
from trytond.pool import PoolMeta
|
||||
from trytond.transaction import Transaction
|
||||
|
||||
|
||||
class Address(metaclass=PoolMeta):
|
||||
__name__ = 'party.address'
|
||||
|
||||
google_maps_url = fields.Function(fields.Char('Google Maps'),
|
||||
'on_change_with_google_maps_url')
|
||||
|
||||
@fields.depends(
|
||||
'name', 'street', 'postal_code', 'city', 'country', 'subdivision')
|
||||
def on_change_with_google_maps_url(self, name=None):
|
||||
lang = Transaction().language[:2]
|
||||
url = ' '.join(self.get_full_address('full_address').splitlines())
|
||||
if url.strip():
|
||||
return 'http://maps.google.com/maps?hl=%s&q=%s' % \
|
||||
(lang, urllib.parse.quote(url))
|
||||
return ''
|
||||
Reference in New Issue
Block a user