You've been invited into the Kudos (beta program) private group. Chat with others in the program, or give feedback to Atlassian.
View groupJoin the community to find out what other Atlassian users are discussing, debating and creating.
Hello,
I have installed JIRA Misc Custom field to calculate numbers value from fields and it works properly, however now I need to investigate more the function of this addon.
first question - Is that possible to calculate the time spent from Transition 1 up until we execute to transition 2? If yes, could you please provide a simple formula for it?
second question - is that possible to calculate gap time within 1 same status. For example after we execute transition 2, it will takes us to Status "Ready for Testing". Is that a way to calculate time from the moment we execute the transition 2 goes to "ready for testing" status until someone create a first comment under that status to indicate acknowledgment of this status.
Many thanks.
For this calculations you could try using ScriptRunner (free for JIRA6, need payment for JIRA7).
Here is an example of script to analise change history. It takes an issue status on 11 am of last friday.
import com.atlassian.jira.component.ComponentAccessor import com.atlassian.jira.issue.Issue import com.atlassian.jira.issue.changehistory.ChangeHistory import com.atlassian.jira.issue.changehistory.ChangeHistoryManager import com.atlassian.jira.issue.history.ChangeItemBean /** * Created by VZverev on 01.12.2015. */ Issue issue; ///Начальное значение для статуса PreviousStatus prevStatus = new PreviousStatus(Calendar.getInstance().getTimeInMillis(), issue.getStatusObject().getName()); ChangeHistoryManager changeHistoryManager = ComponentAccessor.getChangeHistoryManager(); //Дата, с которой анализируем историю изменений Calendar lastFriday = Calendar.getInstance(); lastFriday.add(Calendar.WEEK_OF_YEAR, -1); lastFriday.set(Calendar.DAY_OF_WEEK, Calendar.FRIDAY); lastFriday.set(Calendar.HOUR,11); Date lastFridayDate = new Date(lastFriday.getTimeInMillis()) if(issue.getCreated().getTime() > lastFriday.getTimeInMillis()) return "новый запрос"; for(ChangeHistory changeHistory: changeHistoryManager.getChangeHistoriesSince(issue, lastFridayDate)) { for(ChangeItemBean changeItemBean: changeHistory.getChangeItemBeans()) if(changeItemBean.getField().equals("status")) { prevStatus.setNewStatus(changeItemBean.getCreated().getTime(), changeItemBean.getFromString()); break; } } return prevStatus.getStatus().equals(issue.getStatusObject().getName())?"не изменился": prevStatus.getStatus() class PreviousStatus{ private long dateInMills; private String value; public PreviousStatus(long _dateInMills, String _value){ dateInMills = _dateInMills; value = _value; } public setNewStatus(long _dateInMills, String _value){ if(_dateInMills < dateInMills){ dateInMills = _dateInMills; value = _value; } } public String getStatus(){return value} }
G’day everyone! Super exciting news coming from the Marketplace. We have now fully rolled out the ability for end-users to submit app requests to admins directly from within the product! No longer ...
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.