-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy path__manifest__.py
More file actions
executable file
·35 lines (34 loc) · 1.06 KB
/
__manifest__.py
File metadata and controls
executable file
·35 lines (34 loc) · 1.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- coding: utf-8 -*-
{
'name': 'Web Google Maps',
'version': '11.0.1.0.5',
'author': 'Yopi Angi',
'license': 'AGPL-3',
'maintainer': 'Yopi Angi<yopiangi@gmail.com>',
'support': 'yopiangi@gmail.com',
'category': 'Extra Tools',
'description': """
Web Google Map and google places autocomplete address form
==========================================================
This module brings three features:
1. Allows user to view all partners addresses on google maps.
2. Enabled google places autocomplete address form into partner
form view, it provide autocomplete feature when typing address of partner
""",
'depends': [
'base_setup',
'base_geolocalize',
],
'website': '',
'data': [
'data/google_maps_libraries.xml',
'views/google_places_template.xml',
'views/res_partner.xml',
'views/res_config.xml'
],
'demo': [],
'images': ['static/description/thumbnails.png'],
'qweb': ['static/src/xml/widget_places.xml'],
'installable': True,
'uninstall_hook': 'uninstall_hook',
}