Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.


Page properties
hiddentrue



Status
Tech review

Status
colourGreenYellow
titledoneReady for review

Style guide

Status
colourGreenYellow
titledoneReady for review

Status
titletodo
Status
colourYellow
titleReady for review
Status
colourGreen
titledone
Status
colourRed
titleflagged



Page properties
hiddentrue


Short descriptionThis function adds or subtracts months to/from any given date.
Output

Status
subtletrue
titlenumber




UI Text Box
sizemedium
typeinfo

This function adds or subtracts months to/from any given date.


UI Text Box
typetip

Use this function instead of simply adding n * {MONTH}, since {MONTH}is a macro equivalent to 30 * {DAY}, not taking into account that there are months with 31/28/29 days. Negative values for n are used in order to subtract instead of adding.



Code Block
languagebash
titleSyntax
linenumberstrue
addMonths(timestamp, numbersOfMonths, timeZone) #Output: Number 


UI Expand
titleExamples


Parser expressionDescription


Code Block
languagebash
linenumberstrue
addMonths({issue.duedate}, 3, LOCAL)



This function adds 3 months to the issue's due date.


UI Text Box
typeinfo
{issue.duedate} has the value:

If the due date was set to March 25th, 2011 23:15

This function adds 3 months to the issue's due date. The return value

the output would be June 25th, 2011 23:15

as number

 (in milliseconds).



ui-text-box
Code Block
languagebash
linenumberstrue
addMonths({issue.cf11025}, -2, USER_LOCAL)
typeinfo

{issue.cf11025} has the value: March 25th, 2011 23:15



This function subtracts 2 months from the custom date-time field (with the ID 11025).

The return value would be January 25th, 2011 23:15 as number.

Instead of the Jira server's local time this example uses the current user's time zone.

UI Text Box
typeinfo

If the custom field value was set to March 25th, 2011 23:15 the output would be January 25th, 2011 23:15 (in milliseconds).




UI Expand
titleAdditional information

Parameters used in this function

ParameterInput (data type)Description
timestamp

Status
subtletrue
titlenumber

The parameter must be valid timestamp. Usually this value is retrieved from a field (e.g. due date, created date).
numberOfMonths

Status
subtletrue
titlenumber

The number defined here will be the offset in moths. 

Negative values are used to substract days.

Internally JWT multiplies this value with the time macro  {MONTH} to add full days to the timestamp. Learn more about time macros.

timeZone

Status
subtletrue
titletimezone

The time zone used for the calculation. 



UI Expand
titleOutput
The function returns a
Status
subtletrue
titlenumber
 representing a timestamp.