The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi!
How i can show up days count of last transition.
I dont need calculate total, this value should be refreshable and setted per new transition.
import com.atlassian.core.util.DateUtils import com.atlassian.jira.ComponentManager import com.atlassian.jira.issue.history.ChangeItemBean def componentManager = ComponentManager.getInstance() def changeHistoryManager = componentManager.getChangeHistoryManager() def inProgressName = "In Progress" def rt = [0] changeHistoryManager.getChangeItemsForField (issue, "status").reverse().each {ChangeItemBean item -> def timeDiff = System.currentTimeMillis() - item.created.getTime() if (item.fromString == inProgressName) { rt << -timeDiff } if (item.toString == inProgressName){ rt << timeDiff } } // NOTE: doesn't show anything if less than 60 seconds DateUtils.getDurationString(Math.round(rt.sum() / 1000))
Can some one help me?
getDurationString should return you a properly formatted duration...
Best thing is to return a Long then use the template as I originally recommended. I don't think the search will work though. Try all this with no searcher.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I'll tried this all with searcher "None" and with sting/long combinations:
$jiraDurationUtils.getDurationString($value)
$jiraDurationUtils.getFormattedDuration($value)
$jiraDurationUtils.getDaysDurationFormatter($value)
$jiraDurationUtils.getHoursDurationFormatter($value)
$jiraDurationUtils.getPrettyDurationFormatter($value)
$jiraDurationUtils.getShortFormattedDuration($value)
It doesnt worked in JIRA 6.4.5 and Script Runner v 3.1.4
Nevertheless thank you @Jamie Echlin [Adaptavist].
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Change the searcher for the field to Duration, as I said in my answer. If you don't see Duration you might be using an older version, if so which one?
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.
Set the searcher for the field to None then, but it's best if you can upgrade so you can using the duration indexer. You didn't answer the question about whether it was there by the way.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Jamie Echlin [Adaptavist]
I did what you recommended, so i can see now is that it is:$jiraDurationUtils.getFormattedDuration($value)
Untitled111.jpg
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
OK:
import com.atlassian.jira.component.ComponentAccessor def changeHistoryManager = ComponentAccessor.getChangeHistoryManager() def items = changeHistoryManager.getChangeItemsForField (issue, "status").reverse() if (items) { return ((new Date().time - items.first().created.time) / 1000) as Long } else { return ((new Date().time - issue.getCreated().time) / 1000) as Long }
Searcher: Duration
Custom template:
#if ($value) $jiraDurationUtils.getFormattedDuration($value) #end
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.
Jamie, yes.
Could you add more details here, sorry but i dont know how realise it via groovy code, can you advise please?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You just want the time in the current status? Then you just need to subtract the first change item returned from the current date.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Jamie,
Yes, you right.
This code show me total days. But i'm needed to show up days according each transition to this status (not total).
For example (how this should work):
I changed my status from Open to In-Progress yesterday, and now i see 1 day,
I changed it status to on-hold, then i am again changed it to in-progress and now i see 1 min,
do you understand?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you elaborate on "How i can show up days count of last transition". Why did you post that code, is that what you have tried?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
At Atlassian, we take great pride in the software we ship, and even greater pride in the success our customers achieve when they use our products. #JiraHeroes is our new monthly spotlight series ...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.