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.

66 lines
2.5 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. Tile can be:
  34. * affected to a user;
  35. * be global for all users (In that case, some tiles will be hidden if
  36. the current user doesn't have access to the given model);
  37. Kown issues/limits:
  38. * change color picks wrong color
  39. * can not edit tile from dashboard
  40. * context are ignored
  41. * date filter can not be relative
  42. * combine domain of menue and filter so can not restore origin filter
  43. possible future improvments:
  44. * support context_today
  45. * add icons
  46. * support client side action (like inbox)
  47. * support select int/float column with min/max/avg/sum to display
  48. * change position (maybe drag&drop)
  49. """,
  50. "summary": "Add tile to dashboard",
  51. 'data': ['tile.xml',
  52. 'security/ir.model.access.csv',
  53. 'security/rules.xml'],
  54. 'css': ['static/src/css/tile.css'],
  55. 'demo': [
  56. ],
  57. 'test': [
  58. ],
  59. 'installable': True,
  60. 'auto_install': False,
  61. 'js': ['static/src/js/custom_js.js'],
  62. 'qweb': ['static/src/xml/custom_xml.xml'],
  63. }