On this page you find templates which can be used in sumUp configuration rules to change the output format of computed values.

The Velocity Context is initialized with the following content

keyClassDescription
$valuejava.lang.BigDecimalThe computed value.
$number

com.atlassian.jira.util.velocity.NumberTool

A helper class to format numeric values.
$jiraDateTimeUtilsinternalA helper class which has one function:
getTimeFormatedString(long value).

This function formats timespan according to the time configuration in JIRA.

$formatter

java.text.SimpleDateFormat

JavaSimpleDate format with format ("EEE, d MMM yyyy h:mm a")


Default Format

#if($value)
$value
#end


Hours Format

Assumes that the value is in seconds.

#set($H = '#')
#if($value)
#set($v = $value.doubleValue()/3600.0)
$number.format("$H.$H$H",$v)h
#end


JIRA Timespan Format

Assumes that the value is in seconds.

#if($value)
$jiraDateTimeUtils.getTimeFormatedString($value.longValue())
#end