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.

88 lines
3.2 KiB

  1. # -*- coding: utf-8 -*-
  2. ##############################################################################
  3. #
  4. # Copyright (C) 2012 Agile Business Group sagl (<http://www.agilebg.com>)
  5. # Copyright (C) 2012 Domsense srl (<http://www.domsense.com>)
  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 published
  9. # by the Free Software Foundation, either version 3 of the License, or
  10. # (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 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. {
  22. 'name': "Super Calendar",
  23. 'version': '0.1',
  24. 'category': 'Generic Modules/Others',
  25. 'summary': 'This module allows to create configurable calendars.',
  26. 'description': """
  27. This module allows to create configurable calendars.
  28. Through the 'calendar configurator' object, you can specify which models have
  29. to be merged in the super calendar. For each model, you have to define the
  30. 'description' and 'date_start' fields at least. Then you can define 'duration'
  31. and the 'user_id' fields.
  32. The 'super.calendar' object contains the the merged calendars. The
  33. 'super.calendar' can be updated by 'ir.cron' or manually.
  34. Configuration
  35. =============
  36. After installing the module you can go to
  37. Super calendar Configuration Configurators
  38. and create a new configurator. For instance, if you want to see meetings and
  39. phone calls, you can create the following lines
  40. .. image:: http://planet.domsense.com/wp-content/uploads/2012/04/meetings.png
  41. :width: 400 px
  42. .. image:: http://planet.domsense.com/wp-content/uploads/2012/04/phone_calls.png
  43. :width: 400 px
  44. Then, you can use the Generate Calendar button or wait for the scheduled
  45. action (Generate Calendar Records) to be run.
  46. When the calendar is generated, you can visualize it by the super calendar main menu.
  47. Here is a sample monthly calendar:
  48. .. image:: http://planet.domsense.com/wp-content/uploads/2012/04/month_calendar.png
  49. :width: 400 px
  50. And here is the weekly one:
  51. .. image:: http://planet.domsense.com/wp-content/uploads/2012/04/week_calendar.png
  52. :width: 400 px
  53. As you can see, several filters are available. A typical usage consists in
  54. filtering by Configurator (if you have several configurators,
  55. Scheduled calls and meetings can be one of them) and by your user.
  56. Once you filtered, you can save the filter as Advanced filter or even
  57. add it to a dashboard.
  58. """,
  59. 'author': "Agile Business Group,Odoo Community Association (OCA)",
  60. 'website': 'http://www.agilebg.com',
  61. 'license': 'AGPL-3',
  62. 'depends': ['base'],
  63. "data": [
  64. 'super_calendar_view.xml',
  65. 'cron_data.xml',
  66. 'security/ir.model.access.csv',
  67. ],
  68. 'demo': [],
  69. 'test': [],
  70. 'installable': False,
  71. 'application': True,
  72. 'auto_install': False,
  73. }