From 483d872e1d9ba4cf374cc1f2dbd58802d3a9338e Mon Sep 17 00:00:00 2001 From: tarteo Date: Fri, 27 Jul 2018 12:35:25 +0200 Subject: [PATCH] [ADD] field_utils to web_timeline [UPD] Version number [UPD] README --- web_timeline/README.rst | 7 +++++++ web_timeline/__manifest__.py | 2 +- web_timeline/static/src/js/timeline_renderer.js | 5 ++++- 3 files changed, 12 insertions(+), 2 deletions(-) diff --git a/web_timeline/README.rst b/web_timeline/README.rst index 8ea995a3..78704ad0 100755 --- a/web_timeline/README.rst +++ b/web_timeline/README.rst @@ -39,6 +39,13 @@ the possible attributes for the tag: view. * colors (optional): it allows to set certain specific colors if the expressed condition (JS syntax) is met. + +Optionally you can declare a custom template, which will be used to render the +timeline items. You have to name the template 'timeline-item'. +These are the variables available in template rendering: + +* ``record``: to access the fields values selected in the timeline definition. +* ``field_utils``: used to format and parse values (see available functions in ``web.field_utils``). You also need to declare the view in an action window of the involved model. diff --git a/web_timeline/__manifest__.py b/web_timeline/__manifest__.py index 60e2028a..bb064f9d 100644 --- a/web_timeline/__manifest__.py +++ b/web_timeline/__manifest__.py @@ -4,7 +4,7 @@ { 'name': "Web timeline", 'summary': "Interactive visualization chart to show events in time", - "version": "11.0.1.1.1", + "version": "11.0.1.2.1", 'author': 'ACSONE SA/NV, ' 'Tecnativa, ' 'Monk Software, ' diff --git a/web_timeline/static/src/js/timeline_renderer.js b/web_timeline/static/src/js/timeline_renderer.js index 8eb1d98a..1deec9c0 100644 --- a/web_timeline/static/src/js/timeline_renderer.js +++ b/web_timeline/static/src/js/timeline_renderer.js @@ -7,6 +7,8 @@ var time = require('web.time'); var utils = require('web.utils'); var session = require('web.session'); var QWeb = require('web.QWeb'); +var field_utils = require('web.field_utils'); + var _t = core._t; @@ -282,7 +284,8 @@ var CalendarRenderer = AbstractRenderer.extend({ if (this.arch.children.length) { if(this.qweb.has_template('timeline-item')) { content = this.qweb.render('timeline-item', { - 'record': evt + 'record': evt, + 'field_utils': field_utils }); } else { console.error(_t('Template "timeline-item" not present in timeline view definition.'));