This applies some changes to the module after migration, to conform new
guidelines and conventions for version 11.0.
In addition, this applies the following fixes:
- The widged didn't work when the field was a `datetime` due to a typo
in a JS conditional
- Replaced `Object.assign()` -> `_.assign()` to improve
browser-compatibility
* use include instead of extend
* add README.rst
* update api doc link in readme.rst
* remove description from __oe__ since it is in README.rst
* add OCA icon and AGPL badges
* add datepicker.js through assets_backend
Add README.rst
Too short underline for module title in README.rst
Improving module meta information
Version 1.0
W391 blank line at end of file
Remove module description because README.rst is there
web_search_with_and: Latest OCA conventions
The default window display all the events (aka 'fit'), in case of events spread over the year, the events are invisibles (too small to be readable)
Signed-off-by: adrien.didenot <adrien.didenot@horanet.com>
In Odoo calendar view, the attribute date_delay is an alternative to date_stop, to provides the duration of the event instead of its end date.
This commit integrate this attribute to the Timeline view, but contrary to the base Calendar view the Timeline view could use both arguments (date_stop and date_delay) simultaneously.
Signed-off-by: adrien.didenot <adrien.didenot@horanet.com>
* Update the vis.js framework to latest stable version (v4.20.1) to add new functionality and save almost
400ko of source code in odoo assets (the vis dev team has isolate the code for timeline widget from the
rest of their widgets)
* Add the possibility to display events with no duration (instantaneous) as the same time has regular events
* Add the possibility to choose between two scroll mode :
- zoom in time resolution (default)
or
- vertical scroll (web browser default behaviour)
Signed-off-by: adrien.didenot <adrien.didenot@horanet.com>