Hi,
I know, how to sum these (remaining + logged time) for single issue:
remaining = issue.getEstimate()
loggedTime = issue.getTimeSpent()
But how to sum it, when I need to include subTasks and structure-subIssues? Any help is welcome.
Thanks
Community moderators have prevented the ability to post new answers.
Both of those values are milliseconds, so you can just sum them
Subtasks is just iterating each subtask and adding.
Getting structure sub-issues is more complex, there is an example of how to query structures here: https://jamieechlin.atlassian.net/wiki/display/GRV/Scripting+Other+Plugins#ScriptingOtherPlugins-AllDescendantsMustbeResolvedCondition
But it's the same deal, get the issues and sum the two values.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.