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.

62 lines
2.3 KiB

10 years ago
  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # OpenERP, Open Source Management Solution
  5. # Copyright (C) 2010-2013 OpenERP s.a. (<http://openerp.com>).
  6. # Copyright (C) 2014 initOS GmbH & Co. KG (<http://www.initos.com>).
  7. # Author Markus Schneider <markus.schneider at initos.com>
  8. #
  9. # This program is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU Affero General Public License as
  11. # published by the Free Software Foundation, either version 3 of the
  12. # License, or (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU Affero General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU Affero General Public License
  20. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. ##############################################################################
  23. {
  24. "name": "Dashboard Tile",
  25. "version": "0.4",
  26. "depends": ['web', 'board', 'mail'],
  27. 'author': "initOS GmbH & Co. KG,Odoo Community Association (OCA)",
  28. "category": "",
  29. 'license': 'AGPL-3',
  30. "description": """
  31. module to give you a dashboard where you can configure tile from any view
  32. and add them as short cut.
  33. Kown issues/limits:
  34. * change color picks wrong color
  35. * can not edit tile from dashboard
  36. * context are ignored
  37. * date filter can not be relative
  38. * combine domain of menue and filter so can not restore origin filter
  39. possible future improvments:
  40. * support context_today
  41. * add icons
  42. * support client side action (like inbox)
  43. * support select int/float column with min/max/avg/sum to display
  44. * change position (maybe drag&drop)
  45. """,
  46. "summary": "Add tile to dashboard",
  47. 'data': ['tile.xml',
  48. 'security/ir.model.access.csv',
  49. 'security/rules.xml'],
  50. 'css': ['static/src/css/tile.css'],
  51. 'demo': [
  52. ],
  53. 'test': [
  54. ],
  55. 'installable': True,
  56. 'auto_install': False,
  57. 'js': ['static/src/js/custom_js.js'],
  58. 'qweb': ['static/src/xml/custom_xml.xml'],
  59. }