You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 4 Next »

General

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

(info) 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

(info) Assumes that the value is in seconds.

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


On this page

Related Topics

  • 1
  • 2
  • 3