I am trying to implement status rollup synchronizers in Structure and I am not sure how to make this work exactly.
What I am trying to achieve is the following:
Parent Issue has 6 Statuses, Child has 4. The relationship should look like this:
Parent Child
Funnel = All children 'Open'
Review = All children 'Open'
Analysis = All children 'Open'
ART Backlog = All children 'Open'
Implementing = At least 1 child 'In Progress' or 'Closed'
Done = All children 'Accepted'
As you can see, none of the Statuses are the same (it's just the way we handle things here). Can I make it work like this? or do corresponding statuses like Done and Accepted have to have the same name?
To calrify: The workflows already exist. Also, we want to be able to move freely between Statuses and not be restricted by predefined workflows. That's why we did not specify any transitions in the workflows of each issuetype. Any status can reach any other status within an issuetype at any given moment.