We sent up our Jira to show all marketing activity as one project.
We use epics for our large bucket areas of focus.
We use standards task issues to replay "things that need to be done"
Lastly, we use sub-tasks to break the task down if there are multiple participants that need to be involved in solving the issue.
This works for us as our director wants to see everything in a list view. However,, we can not being sub task to different swim lanes on the Kanban board to show when a subtask is complete or ready for review.
Can we edit the settings of the subtask to make them movable without moving the overall task?
Is it not just Time Spent / (Remaining Time + Time Spent)?
It'd probably be easier to just get the raw time values and perform your math or work.
I'm fuzzy on this but IIRC:
import com.atlassian.jira.plugin.report.impl.TimeTrackingSummaryBean def tt = new TimeTrackingSummaryBean(issues) tt.aggregateRemainingEstimate // etc
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am trying this:
issue = issueManager.getIssueObject("ISSUEKEY") as Issue
def tt = new TimeTrackingSummaryBean(issue)
tt.aggregateRemainingEstimatebut it fails with:
groovy.lang.GroovyRuntimeException: Could not find matching constructor for: com.atlassian.jira.plugin.report.impl.TimeTrackingSummaryBean(com.atlassian.jira.issue.IssueImpl) at Script39.run(Script39.groovy:12)
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.