We have Epic issues as new features, we're going to develop. These Epics goes thru its own workflow as requirements is being prepared. Once we prepare user-stories and technical tasks, they all are linked to specific Epic.
When we negotiate the proposed feature(Epic) with clients we need to understand its estimated time which actually is total estimated time of all linked issues.
Question: Is that possible to get total estimated time of all linked issues somehow?
Thank you!
Mykhaylo, one way to do that is with our Structure plugin, see if it works for you:
If that's what you need, you can also configure a synchronizer to keep this structure up-to-date as you update issues and create/remove links, and also install other synchronizers like sub-tasks synchronizer or GreenHopper synchronizer.
Hope this helps!
Igor
Disclosure: I work for the company behind Structure plugin.
Thank you, Igor, but it is too expensive solution for our case.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can write a custom field that displays the total value of the estimate time for the linked issues. See screenshots attached.
I have also attached the .java file that does this for you.
Currently what I have implemented only displays the long value. You can figure out how you can format that to display the value in hours minutes and second.
If there are linked issues
------------------------------------------------------------------------------------------------------------------------------------
If there are no linked issues
--------------------------------------------------------------------------------------------------------------------------------------
If issue linking is diabled
--------------------------------------------------------------------------------------------------------------
Java code
public class EstimatedTotal extends TextCFType { private static final Logger log = LoggerFactory.getLogger(EstimatedTotal.class); public EstimatedTotal(CustomFieldValuePersister customFieldValuePersister, GenericConfigManager genericConfigManager) { super(customFieldValuePersister, genericConfigManager); } @Override public Map<String, Object> getVelocityParameters(final Issue issue, final CustomField field, final FieldLayoutItem fieldLayoutItem) { final Map<String, Object> map = super.getVelocityParameters(issue, field, fieldLayoutItem); IssueLinkManager issueLinkManager = ComponentAccessor.getIssueLinkManager(); // This method is also called to get the default value, in // which case issue is null so we can't use it to add currencyLocale if (issue == null) { return map; } String status = "Issue linking is disabled. Total Estimated time required: "; Long totalEstimate = new Long(0); if(issueLinkManager.isLinkingEnabled()){ List<IssueLink> inwardLinks = issueLinkManager.getInwardLinks(issue.getId()); if(inwardLinks ==null || inwardLinks.size() ==0){status="No linked issues. Total Estimated time required: ";} else{status=inwardLinks.size() +" linked issues found. Total Estimated time required: ";} for(IssueLink link:inwardLinks){ Issue linkedIssue = link.getSourceObject(); totalEstimate = totalEstimate.longValue() + linkedIssue.getEstimate(); } } status = status + totalEstimate.toString(); field.createValue(issue,status); field.store(); FieldConfig fieldConfig = field.getRelevantConfig(issue); //add what you need to the map here return map; } }
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you very much! I'll check it with our JIRA support team.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you confirm how you were able to get the JAVA code into a custom field? I have the groovy plugin but not sure that will work without being converted to Groovy. Are you using a specific plugin to call this JAVA code? Please confirm!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you confirm how you were able to get the JAVA code into a custom field? I have the groovy plugin but not sure that will work without being converted to Groovy. Are you using a specific plugin to call this JAVA code? Please confirm!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
@Bhushan Nagaraj Can you confirm how you were able to get the JAVA code into a custom field? I have the groovy plugin but not sure that will work without being converted to Groovy. Are you using a specific plugin to call this JAVA code? Please confirm!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
And now it's July 2016...
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.
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.