Hello,
In the Flow app I have the following Workflow that pulls orders’ data from Shopify to a Google Sheet.
I use a post-purchase app and sometimes an item is added to the order but is not paid.
The flow still sends the lineitem’s data to the sheet and this causes to sometimes fulfill items that haven’t been paid for.
Any solution? Like a quantity parameter that only shows paid and therefore fulfillable items?
{{order.createdAt}},{{order.name}},{{lineItemsForeachitem.sku}}, {{lineItemsForeachitem.quantity}},{{lineItemsForeachitem.unfulfilledQuantity}},{{order.shippingAddress.name | replace: ",", " " }},{{order.shippingAddress.address1 | replace: ",", " " }},{{order.shippingAddress.address2 | replace: ",", " " }},{{order.shippingAddress.city | replace: ",", " " }},{{order.shippingAddress.province | replace: ",", " " }},{{order.shippingAddress.zip | replace: ",", " " }},{{order.shippingAddress.countryCodeV2}},{{order.shippingAddress.phone}},{{order.customer.email}}