You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

89 lines
2.5 KiB

  1. # -*- coding: utf-8 -*-
  2. #
  3. #
  4. # Authors: Guewen Baconnier
  5. # Copyright 2015 Camptocamp SA
  6. #
  7. # This program is free software: you can redistribute it and/or modify
  8. # it under the terms of the GNU Affero General Public License as
  9. # published by the Free Software Foundation, either version 3 of the
  10. # License, or (at your option) any later version.
  11. #
  12. # This program is distributed in the hope that it will be useful,
  13. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. # GNU Affero General Public License for more details.
  16. #
  17. # You should have received a copy of the GNU Affero General Public License
  18. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  19. #
  20. #
  21. {'name': 'SQL Views',
  22. 'version': '1.0',
  23. 'author': 'Camptocamp,Odoo Community Association (OCA)',
  24. 'license': 'AGPL-3',
  25. 'category': 'Tools',
  26. 'depends': ['base'],
  27. 'description': """
  28. =========
  29. SQL Views
  30. =========
  31. This addon allows to create SQL views on the database. It also features
  32. a simple CSV export of the views to check their result.
  33. Configuration
  34. =============
  35. To configure this module, you need to:
  36. * go to ...
  37. Usage
  38. =====
  39. To use this module, you need to:
  40. * go to ...
  41. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  42. :alt: Try me on Runbot
  43. :target: https://runbot.odoo-community.org/runbot/149/7.0
  44. Bug Tracker
  45. ===========
  46. Bugs are tracked on `GitHub Issues <https://github.com/OCA/server-tools/issues>`_.
  47. In case of trouble, please check there if your issue has already been reported.
  48. If you spotted it first, help us smashing it by providing a detailed and welcomed feedback
  49. `here <https://github.com/OCA/server-tools/issues/new?body=module:%20sql_view%0Aversion:%207.0%0A%0A**Steps%20to%20reproduce**%0A-%20...%0A%0A**Current%20behavior**%0A%0A**Expected%20behavior**>`_.
  50. Credits
  51. =======
  52. Contributors
  53. ------------
  54. * Guewen Baconnier <guewen.baconnier@camptocamp.com>
  55. Maintainer
  56. ----------
  57. .. image:: https://odoo-community.org/logo.png
  58. :alt: Odoo Community Association
  59. :target: https://odoo-community.org
  60. This module is maintained by the OCA.
  61. OCA, or the Odoo Community Association, is a nonprofit organization whose
  62. mission is to support the collaborative development of Odoo features and
  63. promote its widespread use.
  64. To contribute to this module, please visit http://odoo-community.org.
  65. """,
  66. 'website': 'http://www.camptocamp.com',
  67. 'data': ['views/sql_view_views.xml',
  68. ],
  69. 'installable': True,
  70. }