Hi,
I am looking at creating a calculated scripted field in Script runner based on the Days:Hours:Minutes to resolution.
The have managed to do this calculation to based on the numbers of days, but not down to the hours and minutes.
return (issue.resolutionDate != null) ? String.format("%d day(s)",(int)((issue.resolutionDate.getTime() - issue.getCreated().getTime()) /(1000*60*60*24))) : "N/A" ;
Thanks in advance
Hello Everyone ,
Am currently facing issues with the script to calculate "Total time to complete" from status Open (To Do) - Complete (Close).
Could you please help us with a script to fulfill this requirement. Let us know if it is possible to calculate the time from "To Do" status in workflow?
Below is the script currently giving results from status "In Progress -> Complete". Help us to get results from status "Open ->Complete".
import com.atlassian.jira.component.ComponentAccessor;
import com.atlassian.jira.issue.Issue;
import com.atlassian.jira.issue.CustomFieldManager;
import java.util.Date.*
def customFieldManager = ComponentAccessor.getCustomFieldManager();
def dateFieldObject= customFieldManager.getCustomFieldObjectByName('Progress Start Date');
def dateFieldObject2= customFieldManager.getCustomFieldObjectByName('Progress Closed Date');
def dateValue
def dateValue2
if(issue.getCustomFieldValue(dateFieldObject) && issue.getCustomFieldValue(dateFieldObject2))
{
dateValue= issue.getCustomFieldValue(dateFieldObject) as Date
dateValue2= issue.getCustomFieldValue(dateFieldObject2) as Date
/* return dateValue2.getTime() - dateValue.getTime() */
log.warn("success" + dateValue);
log.warn("success" + dateValue2);
return (dateValue2.getTime() - dateValue.getTime())/1000 as int
log.warn("success");
}
Thanks in advance
Phaneendra Babu B
Hi @djamal
I am trying to do the same. Can you help me in getting the hours and days?
I was able to get the no of day by using resolvedDate - createdDate.
Thank you
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello!
You may do the similar with CelesteCS Math for Confluence, which allows any calculations in Confluence, including any manipulations with table data. Date parameters and functions, like NOW() and DATE() are supported.
Assume you have a table with three columns and three rows on your page – from A1 till C3, where row 1 is the header row. The sum calculation formula for rows 2 and 3 will be simple:
SUM(Table1.A2:C3) |
There is a plenty of other functions in the macro, so you may perform any calculations using formulas in EXCEL style.
Thanks!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thanks, this is working as expected now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Use JiraDurationUtils instead to format duration.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello Dear , Am currently facing issues with the script to calculate "Total time to complete" from status Open (To Do) - Complete (Close).
Could you please help us with a script to fulfill this requirement. Let us know if it is possible to calculate the time from "To Do" status in workflow?
Thanks in advance
Phaneendra Babu B
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.