Mechanic is a development and ecommerce automation platform for Shopify. :)
This task makes it easy for you to automatically mark new orders as 'Ready For Pickup' as soon as they come in. Ideal for stores that always have products in stock and want to speed up the pickup process.
Runs Occurs whenever an order is created. Configuration includes pickup locations.
This task makes it easy for you to automatically mark new orders as 'Ready For Pickup' as soon as they come in. Ideal for stores that always have products in stock and want to speed up the pickup process.
This makes use of the fulfillmentOrderLineItemsPreparedForPickup GraphQL mutation.
This task was written with the help of ChatGPT-4, check out the conversation here.
Mechanic is designed to benefit everybody: merchants, customers, developers, agencies, Shopifolks, everybody.
That’s why we make it easy to configure automation without code, why we make it easy to tweak the underlying code once tasks are installed, and why we publish it all here for everyone to learn from.
(By the way, have you seen our documentation? Have you joined the Slack community?)
shopify/orders/create
{% if event.preview %} {% capture order %} { "fulfillment_orders": [ { "id": 1, "assigned_location": { "name": {{ options.pickup_locations__array_required.first | json}} } }, { "id": 2, "assigned_location": { "name": "Third Party Service" } } ] } {% endcapture %} {% assign order = order | parse_json %} {% endif %} {% assign pickup_locations = options.pickup_locations__array_required %} {% for fulfillment_order in order.fulfillment_orders %} {% if pickup_locations contains fulfillment_order.assigned_location.name %} {% assign fulfillment_order_id = fulfillment_order.id %} {% assign fulfillment_order_graphql_id = "gid://shopify/FulfillmentOrder/" | append: fulfillment_order_id %} {% capture query %} mutation { fulfillmentOrderLineItemsPreparedForPickup( input: { lineItemsByFulfillmentOrder: [ { fulfillmentOrderId: {{ fulfillment_order_graphql_id | json }} } ] } ) { userErrors { field message } } } {% endcapture %} {% action "shopify" %} {{ query | json }} {% endaction %} {% endif %} {% endfor %}
["Your location name here"]