Hi,
I have problem. I have type:
I need list list History when ALL subtasks CODING are Done/Finished .
type = History AND issueFunction in parentsOf("issuetype = Codinf and resolution = Finished")
With my filter, I get a list in which at least one task Coding is closed, not all.
How to include all Coding tasks with a closed status
Hello Tomasz,
Welcome to the Community!
It looks like this may be involving something (issueFunction) from the Scriptrunner plugin, which I'm afraid I'm not personally very familiar with. However, it seems to me like you may have more success with using
type = History AND issueFunction in parentsOf("issuetype = Coding AND NOT resolution = EMPTY")
instead, so that you're checking for a lack of empty resolutions instead of looking for something that's in Done.
I hope that helps!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.