Abstract

This code snippet adds a certain number of minutes/hours/days/weeks/months to a Date/Date-Time picker field.

Logic

Add the number of minutes/hours/days/weeks/months to the date field using Use(TimeCategory

Snippet 

use (groovy.time.TimeCategory) {
     return <Date Object> + <Number of units>.<Unit>
 }

Placeholders

PlaceholderDescriptionExample
<Date Object>Access a date fieldissue.get("created")
<Number of units>
The number of units to be added5
<Unit>is one of "minutes","hours","days" "weeks" or "months"months

Examples

The output of this code snippet is a Timestamp which you could use in a Groovy expression, for example to:

References

Related articles


Related issues