123456789101112131415161718192021222324252627282930313233343536 |
- # -*- coding: utf-8 -*-
- ######################################################################################################
- #
- # Copyright (C) B.H.C. sprl - All Rights Reserved, http://www.bhc.be
- #
- # This program is free software: you can redistribute it and/or modify
- # it under the terms of the GNU Lesser General Public License as
- # published by the Free Software Foundation, either version 3 of the
- # License, or (at your option) any later version.
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied,
- # including but not limited to the implied warranties
- # of merchantability and/or fitness for a particular purpose
- #
- # You should have received a copy of the GNU Lesser General Public License
- # along with this program. If not, see <http://www.gnu.org/licenses/>
- ######################################################################################################
- {
- 'name': 'Google Maps',
- 'version': '1.0',
- 'category': 'Extra Tools',
- 'description': """This module adds a Map button on the partner’s form in order to open its address directly in the Google Maps view""",
- 'author': 'BHC & Odoo',
- 'website': 'www.bhc.be',
- 'depends': ['base'],
- 'init_xml': [],
- 'images': ['static/description/banner.png','images/google_map.png','images/map.png','images/earth.png'],
- 'data': [
- 'views/res_partner_view.xml',
- ],
- 'installable': True,
- 'auto_install': False,
- 'license': 'LGPL-3',
- }
|