Hey,
I cannot understand how come this in is not triggered?
+If someone have a template to add a tag to order when it has multiple locations it would be much appreciated!
Hey,
I cannot understand how come this in is not triggered?
+If someone have a template to add a tag to order when it has multiple locations it would be much appreciated!
I think you need to post your actual condition because it’s weird you are using “includes” with a GID/ID field. I suspect also that you are checking if the SAME fulfillment order matches multiple locations, which is impossible
Hey,
Basically it’s 4 conditions that only one of them should be true in order for the flow to trigger:
{Location is A and B OR Location is A and C OR Location is B and C OR Location is A and B and C}
As i showed in the picture, even if one condition is true, for example Location is A and C, it doesn’t trigger the flow.
Here is the flow file - https://easyupload.io/g3c9lb
I might got it all wrong, so my goal is to have the flow tag orders when there is more than one fulfillment location, thank you so much!
Yeah, so you are currently checking if the same fulfillment is in multiple locations, which isn’t possible. This is because you clicked “add criteria for same item”. You would need to use multiple conditions steps to accomplish what you are doing.
I would instead do one of 2 things
(1) Insert a count step and count the number of fulfillment orders. Then a condition to check if the count is >= 2. The downside of this is that if you ever have more than 1 fulfillment from the same location it will get counted.
(2) Use the Run code action to write the location you need. Conditionally counting things is one of main use cases we added to to accomplish. This example shows how to sum the number of products conditionally based on tags. The ideal is the same for your use case.
Thanks, first option did great!