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.

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