Hello,
I have a process that has 2 types of treatment based on if it’s an individual order or not
Some steps of this process are exact but others are different.
I would like to think of the ‘cleanest’ way to construct my process based on this condition, in order to minimize redundance and unnecessary conditions
This is what I currently have
In yellow is the step that is the same independently of the type of order
There will be other exact steps in between steps that are different so i cannot follow this logic without duplicating the ones that are the same.
Now, i would like to know which solution is the best way to tackle this ?
-
keep this switch and duplicate the exact same steps when it’s the case (like step 2)
-
do not use a flowchart and use “if” condition for each step (if individual order then … else …) ?
-
any other suggestion ?
thank you!!