Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

ScriptRunner - find number of days between two custom date fields

Can anyone provide scriptrunner cloud, workflow post function, run script code to calculate the number of days between two custom field dates. 

I've seen the code below but the first two lines give an error...

Thanks.

 

import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import  java.util.Date.*

def customFieldManager = ComponentAccessor.getCustomFieldManager();
def dateFieldObject= customFieldManager.getCustomFieldObject('customfield_15968');

def dateFieldObject2= customFieldManager.getCustomFieldObject('customfield_15967');

if(issue.getCustomFieldValue(dateFieldObject) && issue.getCustomFieldValue(dateFieldObject2)) {

   def dateValue = issue.getCustomFieldValue(dateFieldObject) as Date
   def dateValue2 = issue.getCustomFieldValue(dateFieldObject2) as Date
   def calculation = (dateValue - dateValue2)
    
   return (calculation as String)
}

1 answer

Suggest an answer

Log in or Sign up to answer
0 votes
Thanos Batagiannis [Adaptavist]
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
Feb 22, 2019

Hi Neil, 

The script you have over there is for ScriptRunner for Server, you can find a Cloud version of that script at Script Library - Calculate the difference between two dates

Hope that helps 

Thanos

Thanks Thanos. Yes, I assumed this was the Server version.

I'm not a coding expert but he code below appears to indicate you have to hard-code the issuekey.

How would I amend the code so, within a workflow (post function), the code returns the difference in days between two custom fields ("Analysis Date" and "Ready Date") for the issuekey being transitioned in the workflow?

What parts of the code below would I have to change?

Thanks for your help.

Neil

 

def issueKey = 'TEST-1'
//Pick a date that you would like to calculate from
def issueFieldId = getFieldIdFromName('Reqs Agreed Date')
//You can even use built-in field ids, like resolutiondate
resolutionFieldId = 'resolutiondate'

def reqagreeddate = new Date().parse('yyyy-MM-dd', getIssueField(issueKey, issueFieldId))
def resolutionDate = new Date().parse('yyyy-MM-dd', getIssueField(issueKey, resolutionFieldId))
def dateDifference = resolutionDate - reqagreeddate

return dateDifference + ' Days'

def getIssueField(issueKey, fieldId) {
def issueFieldValue = null
def result = get('/rest/api/2/issue/' + issueKey)
.header('Content-Type', 'application/json')
.asObject(Map)
if (result.status == 200) {
result.body.fields.each { key, value ->
if (key == fieldId) {
issueFieldValue = value.toString()
}
}
logger.warn issueFieldValue
return issueFieldValue
} else {
logger.warn "Failed to find issue: Status: ${result.status} ${result.body}"
return null
}
}

def getFieldIdFromName(fieldName) {
def customFieldObject = get('/rest/api/2/field').asObject(List).body.find { it.name == fieldName
}
return customFieldObject.id
}

I would like the result (dateDifference) to be stored in custom field "Cycle Time")

I would like the result (dateDifference) to be stored in custom field "Cycle Time" so it can be queried with JQL.

The code copied from the adaptavist link provided doesn't compile. It throws up lots of errors when pasted into the "Script Context"

TAGS
AUG Leaders

Atlassian Community Events