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.

152 lines
5.8 KiB

  1. .. image:: https://img.shields.io/badge/licence-AGPL--3-blue.svg
  2. :target: http://www.gnu.org/licenses/agpl-3.0-standalone.html
  3. :alt: License: AGPL-3
  4. =============
  5. Timeline view
  6. =============
  7. Define a new view displaying events in an interactive visualization chart.
  8. The widget is based on the external library
  9. http://visjs.org/timeline_examples.html
  10. Configuration
  11. =============
  12. You need to define a view with the tag <timeline> as base element. These are
  13. the possible attributes for the tag:
  14. * date_start (required): it defines the name of the field of type date that
  15. contains the start of the event.
  16. * date_end (optional): it defines the name of the field of type date that
  17. contains the end of the event. The date_end can be equal to the attribute
  18. date_start to display events has 'point' on the Timeline (instantaneous event)
  19. * date_delay (optional): it defines the name of the field of type integer
  20. that contain the duration in hours of the event, default = 1
  21. contains the end of the event.
  22. * default_group_by (required): it defines the name of the field that will be
  23. taken as default group by when accessing the view or when no other group by
  24. is selected.
  25. * zoomKey (optional): Specifies whether the Timeline is only zoomed when an
  26. additional key is down. Available values are '' (does not apply), 'altKey',
  27. 'ctrlKey', or 'metaKey'. Set this option if you want to be able to use the
  28. scroll to navigate vertically on views with a lot of events.
  29. * event_open_popup (optional): when set to true, it allows to edit the events
  30. in a popup. If not (default value), the record is edited changing to form
  31. view.
  32. * colors (optional): it allows to set certain specific colors if the expressed
  33. condition (JS syntax) is met.
  34. You also need to declare the view in an action window of the involved model.
  35. Example:
  36. .. code-block:: xml
  37. <?xml version="1.0" encoding="utf-8"?>
  38. <odoo>
  39. <record id="view_task_timeline" model="ir.ui.view">
  40. <field name="model">project.task</field>
  41. <field name="type">timeline</field>
  42. <field name="arch" type="xml">
  43. <timeline date_start="date_start"
  44. date_stop="date_end"
  45. string="Tasks"
  46. default_group_by="user_id"
  47. event_open_popup="true"
  48. zoomKey="ctrlKey"
  49. colors="#ec7063:user_id == false;#2ecb71:kanban_state=='done';">
  50. </timeline>
  51. </field>
  52. </record>
  53. <record id="project.action_view_task" model="ir.actions.act_window">
  54. <field name="view_mode">kanban,tree,form,calendar,gantt,timeline,graph</field>
  55. </record>
  56. </odoo>
  57. Usage
  58. =====
  59. For accessing the timeline view, you have to click on the button with the clock
  60. icon in the view switcher. The first time you access to it, the timeline window
  61. is zoomed to fit all the current elements, the same as when you perform a
  62. search, filter or group by operation.
  63. You can use the mouse scroll to zoom in or out in the timeline, and click on
  64. any free area and drag for panning the view in that direction.
  65. The records of your model will be shown as rectangles whose widths are the
  66. duration of the event according our definition. You can select them clicking
  67. on this rectangle. You can also use Ctrl or Shift keys for adding discrete
  68. or range selections. Selected records are hightlighted with a different color
  69. (but the difference will be more noticeable depending on the background color).
  70. Once selected, you can drag and move the selected records across the timeline.
  71. When a record is selected, a red cross button appears on the upper left corner
  72. that allows to remove that record. This doesn't work for multiple records
  73. although they were selected.
  74. Records are grouped in different blocks depending on the group by criteria
  75. selected (if none is specified, then the default group by is applied).
  76. Dragging a record from one block to another change the corresponding field to
  77. the value that represents the block. You can also click on the group name to
  78. edit the involved record directly.
  79. Double-click on the record to edit it. Double-click in open area to create a
  80. new record with the group and start date linked to the area you clicked in.
  81. .. image:: https://odoo-community.org/website/image/ir.attachment/5784_f2813bd/datas
  82. :alt: Try me on Runbot
  83. :target: https://runbot.odoo-community.org/runbot/162/10.0
  84. Known issues / Roadmap
  85. ======================
  86. * Implement support for vis.js timeline range item addition (with Ctrl key
  87. pressed).
  88. * Implement a more efficient way of refreshing timeline after a record update.
  89. Bug Tracker
  90. ===========
  91. Bugs are tracked on `GitHub Issues
  92. <https://github.com/OCA/web/issues>`_. In case of trouble, please
  93. check there if your issue has already been reported. If you spotted it first,
  94. help us smashing it by providing a detailed and welcomed feedback.
  95. Credits
  96. =======
  97. Images
  98. ------
  99. * Odoo Community Association: `Icon <https://github.com/OCA/maintainer-tools/blob/master/template/module/static/description/icon.svg>`_.
  100. Contributors
  101. ------------
  102. * Laurent Mignon <laurent.mignon@acsone.eu>
  103. * Adrien Peiffer <adrien.peiffer@acsone.eu>
  104. * Pedro M. Baeza <pedro.baeza@tecnativa.com>
  105. * Leonardo Donelli <donelli@webmonks.it>
  106. * Adrien Didenot <adrien.didenot@horanet.com>
  107. Do not contact contributors directly about support or help with technical issues.
  108. Maintainer
  109. ----------
  110. .. image:: https://odoo-community.org/logo.png
  111. :alt: Odoo Community Association
  112. :target: https://odoo-community.org
  113. This module is maintained by the OCA.
  114. OCA, or the Odoo Community Association, is a nonprofit organization whose
  115. mission is to support the collaborative development of Odoo features and
  116. promote its widespread use.
  117. To contribute to this module, please visit https://odoo-community.org.