Hi Everyone,
I'm searching for a solution of how to prefill Date Time field based on issue created date + 48 hours.
I'll appreciate any help.
Hi Everyone!
We solved this issue with the team:
import java.sql.Timestamp
import java.util.concurrent.TimeUnit
def start = getFieldById("customfield_24410")
def date = issueContext.created
def defaultValue = new Date(date.getTime() + TimeUnit.DAYS.toMillis(2)).format("dd/MMM/yy h:mm a")
if (! start.getValue()) {
start.setFormValue(defaultValue)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I've done a script, you can find it below. How to swap
new Date().time
with
def date = getFieldById("create-date")
import java.sql.Timestamp
import java.util.concurrent.TimeUnit
def date = getFieldById("create-date")
def start = getFieldById("customfield_24410")
def defaultValue = new Date(new Date().time + TimeUnit.DAYS.toMillis(2)).format("dd/MMM/yy h:mm a")
if (! start.getValue()) {
start.setFormValue(defaultValue)
}
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.