I am trying to create a new issue using scriptrunner and I need to hard code the time on a custom date field. so I'd like it to have the current date with a time of 4:00 AM
I was hoping to use the new Date() function and then hard code the time to 4:00 AM instead of the current time.
def startTime = customFieldManager.getCustomFieldObjectByName("Start Time")
Date dateStart = new Date()
issue.setCustomFieldValue(startTime, new Timestamp(new Date().time))
The output of the customfield(Start Time) should be display as follows dd/mm/yy 4:00 AM
Jira stores all date/time fields in the db as timestamp values which are essentially the UTC EpochMilliseconds.
So that means that 4am for you may not be 4am for every user.
If you set the value to 4am server time, the equivalent UTC timestamp will be stored, and then other users in other timezones will see different times.
So depending on what you want and where you implement the script (i.e. who the script is running as) you might get different values.
If you don't care about all that and just want the current date at 4am (relative to the current user), just do this:
def dateStart = new Date().clearTime()
dateStart.setHours(4)
issue.setCustomFieldValue(startTime, dateStart)
I added the code above but I am getting the following error.
jira.workflow.WorkflowException: Java type java.util.Date not currently supported. Sorry.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Sorry, my bad
You need to convert the Date to a Timestamp before assigning it to a field:
issue.setCustomFieldValue(startTime, dateStart.toTimestamp())
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Brilliant! that worked, thank you so much, really appreciate your help.
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.