__openerp__.py 1.6 KB

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