Versions Compared

Key

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


Page properties
hiddentrue
Status
Tech review

Status
titletodo

Style guide

Status
titletodo

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

Page properties
hiddentrue
Short descriptionTimestamp equivalent of any given day plus an offset of n days where weekends don't count.Output Statussubtletruetitletimestamp UI Text Box
sizemedium
typeinfo
Returns a  Statussubtletruetitletimestamp  resultant of adding n months to timestamp t.
UI Text Box
typetip

Use this function instead of simply adding n * {MONTH}, since {MONTH}is a macro equivalent to 30 * {DAY}. Negative values for n are used in order to subtract instead of addingThis function adds or subtracts months to or from any given date.


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


UI Expand
titleExamples


Parser expressionDescription


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



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

UI Text Box
typeinfo
timestamp t has the value:

If the due date was set to March 25th,

2011

2020 23:15

This function returns a timestamp as a 
Status
subtletrue
titlenumber
with the value: June 25th, 2011 23:15

the output would be June 25th, 202023:15 (in milliseconds).



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



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

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, 2020 23:15 the output would be January 25th, 2020 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).
numberOfDaysnumberOfMonths

Status
subtletrue
titlenumber

The number defined here will be the offset in daysmothsNegative values are used to substract days subtract  moths.

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

timeZone

Status
subtletrue
titletimezone

The time zone used for the calculation. 



true

ui-expand
titleOutput

This function returns a

Status
subtletrue
titlenumber
 representing a timestamp

Learn more about timezones
Excerpt Include
Dates, times and time zonesDates, times and time zonesnopanel


UI Text Box
typetip

Work days might depend on the time zone - it might be Sunday on the west coast of the US while at the same time it's already Monday in Australia. 

UI Expand
titleOutput
The function returns a
Status
subtletrue
titletimestamp
.

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.



Image AddedUse cases and examples

Page properties report
firstcolumnUse case
headingsJWT feature, Workflow function, Field type, Automated action, Parser functions
cqllabel = "parser_func_addmonths" and space = currentSpace()


Page properties
hiddentrue



Status
Tech review

Status
colourGreen
titledone

Style guide

Status
colourGreen
titledone

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



Page properties
hiddentrue


Short descriptionAdds or subtracts months to from any given date.
Output

Status
subtletrue
titlenumber

Label
UI Text Box
typenote
In this function we are not taking into consideration the fact that some months have more or less than 30 days.