[2016-08-23] Released Jira Workflow Toolbox 2.2.16

Improvements

Bug Fixes

Expression Returned Value Notes
{10000} + {10001} + {10003} Formula for summing 3 numeric custom fields when we are certain that all 3 the fields are initialized. In case any of these fields is not initialized, an error is raised and any of the following 2 expression examples should be used. {10000}, {10001} and {10003} are three numeric custom field.
({10000} = null ? 0 : {10000}) + ({10001} = null ? 0 : {10001}) + ({10003} = null ? 0 : {10003}) Formula for summing 3 numeric custom fields when some of them may be uninitialized. When any of this fields is not initialized a zero value is assumed.

{10000}, {10001} and {10003} are three numeric custom field.
sum([{10000}, {10001}, {10003}]) A more compact syntax for summing 3 numeric custom fields when some of them may be uninitialized.
Version JWT Release Notes 2.2.16 or higher is required.
{10000}, {10001} and {10003} are three numeric custom field.